페이지의 URL이 변경될 때 코드를 실행하는 방법
Greasemonkey 스크립팅의 맥락에서는 페이지의 URL 변경에 대응하는 것이 필요합니다. URL(location.href)을 효율적으로 사용하세요. 시간 초과나 폴링 없이 이를 달성하려면 MutationObserver API 활용을 고려하세요.
MutationObserver를 사용한 솔루션
이전 URL을 초기화하세요.
<code class="js">var oldHref = document.location.href;</code>
본문 요소에 MutationObserver 연결:
<code class="js">window.onload = function() { var bodyList = document.querySelector('body'); var observer = new MutationObserver(function(mutations) { if (oldHref != document.location.href) { oldHref = document.location.href; /* Execute your code here */ } }); var config = { childList: true, subtree: true }; observer.observe(bodyList, config); };</code>
최신 JavaScript 사양
최신 JavaScript 사양을 지원하는 최신 브라우저의 경우 다음과 같은 단순화된 구문을 사용하십시오.
<code class="js">const observeUrlChange = () => { let oldHref = document.location.href; const body = document.querySelector('body'); const observer = new MutationObserver(mutations => { if (oldHref !== document.location.href) { oldHref = document.location.href; /* Execute your code here */ } }); observer.observe(body, { childList: true, subtree: true }); }; window.onload = observeUrlChange;</code>
MutationObserver를 활용하면 신뢰할 수 없는 폴링 기술에 의존하지 않고도 URL 변경 사항을 효과적으로 캡처하고 사용자 정의 코드 실행을 트리거할 수 있습니다.
위 내용은 Greasemonkey의 MutationObserver를 사용하여 페이지의 URL이 변경될 때 코드를 실행하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!