var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutationRecord) {
console.log(mutationRecord);
}); 
});

var target = parent.document.getElementById('AAAssetCategory-link');
observer.observe(target, { attributes : true, attributeFilter : ['class'] });

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2021-07-04
  • 2022-01-29
  • 2021-05-27
  • 2021-06-01
  • 2021-12-19
猜你喜欢
  • 2022-12-23
  • 2021-07-10
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案