我可以使用nodeJS jsdom访问事件监听器的函数体吗
我将 jsdom 与 NodeJS 一起使用。我加载一个大型 HTML 文档,并使用 jQuery 来导航 DOM。我有一个例子,我有一个元素,我需要访问事件侦听器(onclick)的函数体。事件侦听器已添加到源 HTML 中:
<a href="#" onclick="javascript:window.open('http://<rest-of-url>'); return false;"></a>
DOM 元素的 onclick 属性未定义。
顺便说一句:我真正想做的是获取源中指定的 URL(请注意,
I am using jsdom with nodeJS. I load in a large HTML document, and am using jQuery to navigate the DOM. I have a case where I have an element, and I need to access the function body of an event listener (onclick). The event listener was added in the source HTML:
<a href="#" onclick="javascript:window.open('http://<rest-of-url>'); return false;"></a>
The onclick attribute of the DOM element is undefined.
btw: what I really want to do is get the URL (please note that <rest-of-url> is not what is in the source, a real URL spec is there) that is specified in the source.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
e.getAttribute('onclick')
不起作用?e.getAttribute('onclick')
doesn't work?