我正在嘗試編寫一個腳本,在任何時候它都會替換一個元素。這意味着我需要在創建它時立即替換該元素,包括頁面加載時。只要它存在就用另一個元素替換一個元素
我試過使用MutationObserver無濟於事。
var target = document.querySelector('#taskboard');
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if($(mutation.target).is('div.someClass')){
//Do a thing
}
});
});
config = { attributes: true, childList: true, characterData: true , subtree: true};
observer.observe(target, config);
我明明只是檢查元素每一秒和取代它,但我懷疑這是可怕的高性能,它肯定是不優雅。
如何在任何時候檢測元素的創建或存在以便我可以用另一個元素替換它?
也許再次嘗試使用MutationObserver。這裏有一些例子(http://stackoverflow.com/questions/3219758/detect-changes-in-the-dom)可能有幫助。 – Moob
MutationObserver正是你需要在這裏使用的(假設你的目標瀏覽器支持它)。請將您嘗試的代碼添加到問題中,以便我們可以對其進行調試。 –