H 5新特性MuttionObserエラーFailed to execute'observe'on'MuttionObserver解決
624 ワード
コンソールエラー:Uncaugt Type Error:Failed to execute'observe'on'MuttionObserver':parameter 1 is not of type'Node'
実行に必要なのは、ノード(dom要素)であり、jqの方法ではないので、jsを使用して要素を取得してください.
次のとおりです
実行に必要なのは、ノード(dom要素)であり、jqの方法ではないので、jsを使用して要素を取得してください.
次のとおりです
var targetNode = document.querySelector(".f-w6");// $(".f-w6")
var config = {
characterData: true
}
var callback = function(mutationsList) {
for(var mutation of mutationsList) {
if (mutation.type == 'characterData') {
console.log('33333');
}
}
};
var observer = new MutationObserver(callback);
observer.observe(targetNode , config);