미디어위키:Gadget-OWLink.js: 두 판 사이의 차이
imported>Senouis 편집 요약 없음 |
imported>Senouis (1월1일 hsl0님 요청) |
||
(같은 사용자의 중간 판 2개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
/** [[틀: | /** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수 | ||
* class=" | * class="OWLink-container" | ||
* 작성자: [[사용자: | * 작성자: [[사용자:hsl0|hsl0]] | ||
**/ | **/ | ||
$(function | $(function useOWLink() { | ||
$('.OWLink-container a').each(function() { | |||
$('. | |||
var href = new URL(this.href); | var href = new URL(this.href); | ||
if( | if(location.host === href.host) $(this).click(function(event) { | ||
event.preventDefault(); | event.preventDefault(); | ||
location.replace(event.currentTarget.href); | location.replace(event.currentTarget.href); | ||
}); | }).addClass('OWLink'); | ||
else this.classList.add('OWLink-no'); | |||
}); | }); | ||
}); | }); | ||
2021년 1월 1일 (금) 12:36 기준 최신판
/** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수
* class="OWLink-container"
* 작성자: [[사용자:hsl0|hsl0]]
**/
$(function useOWLink() {
$('.OWLink-container a').each(function() {
var href = new URL(this.href);
if(location.host === href.host) $(this).click(function(event) {
event.preventDefault();
location.replace(event.currentTarget.href);
}).addClass('OWLink');
else this.classList.add('OWLink-no');
});
});