[Asm] 纯文本查看 复制代码 function monitorDomChange() {
randomChars.forEach(function(value) {
console.log(value);
// 模拟点击事件
if (value) {
setTimeout(() => {
// 在这里执行您想要的操作
if (value.dispatchEvent) {
const event = new MouseEvent('click', {
bubbles: true,
cancelable: true,
view: unsafeWindow,
});
value.dispatchEvent(event);
} else {
console.log('Value does not support dispatchEvent');
}
}, 5000);
const targetDivSelector = '#endText';
const targetDiv = document.querySelector(targetDivSelector);
if (targetDiv) {
console.log('发现div:', targetDiv);
// 在这里可以对目标div进行操作或获取需要的数据
} else {
console.log('没有发现div');
}
}
});
} |