uniqueObserver

创建于 2023年06月16日
更新于 2023年06月16日
似乎没有做出太大的贡献,只是不想重复的写代码而将其作为工具库使用
总安装量
117
今日新增
+0
用户评分
- / 5.0 (0)
当前版本
1.0.0
// @require https://scriptcat.org/lib/1105/1.0.0/uniqueObserver.js?sha384-yUrKWaR631Ql3a5sPnv0245fv8zjCyVguHr2EV4OVvWwKaxnsRfURM0qUihtJujH
库详情
这是一个用户脚本使用的库,你可以在你的脚本中直接引用它。

如何使用示例代码

const nextPlay = document.querySelector('#next_play_btn');
const config = { attributes: true, childList: true, subtree: false };

const observer = observeNodeChanges(nextPlay, config, function(mutation) {
  console.log('节点发生变化了', mutation.type);
});