脚本体验师001 发表于 2023-7-29 15:01
在这里讨论技术方面是不需要花钱的,这也是我喜欢这个论坛的原因,每个人都会和善的对待你
it works!感谢指点
但是我想进一步调试一下,下面这几个console.log都打印不出来任何东西……
(function() {
'use strict';
setTimeout = () => {};
const ele = document.querySelector("#hd_0_container_0 > div:nth-child(1) > div:nth-child(2) > div > div:nth-child(1) > div:nth-child(3)");
const prop = Object.keys(ele).find(p => p.startsWith('__reactEventHandlers'));
ele[prop].onMouseEnter();
console.log('打印元素绑定的事件');
console.log(ele);
console.log(prop);
console.log(ele[prop]);
// Your code here...
})();
我也根据教程下载了react developer tools,但一直是在这个页面没有显示任何内容 emmm