禁用反应的所有点击合成事件
disable all click synthesis events of react
我对 React 有疑问。在我的例子中,我在文档中添加了一个事件监听器,在监听器中我想禁用 react
的所有点击合成事件
https://codesandbox.io/s/lingering-hill-hxu3o?file=/public/index.html
使用此代码,这会有所帮助,
已在 codesandbox 中测试
<!-- index.html -->
document.addEventListener(
"click", (e) => {
console.log("document hop H1 click not exec");
e.preventDefault();
e.stopPropagation();
},
true
);
这是来源link:
我对 React 有疑问。在我的例子中,我在文档中添加了一个事件监听器,在监听器中我想禁用 react
的所有点击合成事件https://codesandbox.io/s/lingering-hill-hxu3o?file=/public/index.html
使用此代码,这会有所帮助,
已在 codesandbox 中测试
<!-- index.html -->
document.addEventListener(
"click", (e) => {
console.log("document hop H1 click not exec");
e.preventDefault();
e.stopPropagation();
},
true
);
这是来源link: