사용자:Hsl0/연구소/2.js: 두 판 사이의 차이
imported>Hsl0 (내용을 "→* [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수 * class="OWLink-container" * 작성자: [[사용자:Gustmd7410|Gustmd7410]] *: $(func..."(으)로 바꿈) |
imported>Hsl0 편집 요약 없음 |
||
3번째 줄: | 3번째 줄: | ||
* 작성자: [[사용자:Gustmd7410|Gustmd7410]] | * 작성자: [[사용자:Gustmd7410|Gustmd7410]] | ||
**/ | **/ | ||
$(function | $(function useOWLink() { | ||
if(!URLSearchParams) return; | if(!URLSearchParams) return; | ||
2020년 12월 31일 (목) 00:19 판
/** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수
* class="OWLink-container"
* 작성자: [[사용자:Gustmd7410|Gustmd7410]]
**/
$(function useOWLink() {
if(!URLSearchParams) return;
$('.OWLink-container a').each(function() {
var href = new URL(this.href);
var params = new URLSearchParams(location.search);
if(
location.host === href.host && decodeURI(
location.pathname === '/w/index.php' && params.get('title') ||
location.pathname.startsWith('/wiki/') && location.pathname.replace('/wiki/', '')
) === decodeURI(
href.pathname === '/w/index.php' && href.searchParams.get('title') ||
href.pathname.startsWith('/wiki/') && href.pathname.replace('/wiki/', '')
) && params.get('action') === href.searchParams.get('action')
) $(this).click(function(event) {
event.preventDefault();
location.replace(event.currentTarget.href);
}).addClass('OWLink');
});
});