我如何知道为链接设置了 onmousedown 事件?
我想在加载 html 文档后对其进行解析,并发现为它们设置 onmousedown 事件的所有链接 - 我该如何做到这一点?
谢谢
亚历克斯
I want to parse an html document after it has loaded and discover all the links that the onmousedown event is set for them - how do I do that?
Thanks
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然您无法直接执行此操作,但您可以通过使用几个内置函数来创建具有 onmousedown 属性的元素数组。
While you can't do this directly, you can create an array of elements with the onmousedown property by using a couple of inbuilt functions.
我认为你不能。
如果您的脚本之一设置了 onmousedown 事件,您可以修改它,以便它向您设置事件处理程序的 dom 元素添加一个属性,以便您稍后可以测试该属性。
I don't think you can.
If it's one of your script that sets the onmousedown event, you can modify it so it adds an attribute to the dom elements you set an event handler, so you can test that attribute later.