我可以使用nodeJS jsdom访问事件监听器的函数体吗

发布于 2024-11-16 22:27:40 字数 375 浏览 4 评论 0原文

我将 jsdom 与 NodeJS 一起使用。我加载一个大型 HTML 文档,并使用 jQuery 来导航 DOM。我有一个例子,我有一个元素,我需要访问事件侦听器(onclick)的函数体。事件侦听器已添加到源 HTML 中:

<a href="#" onclick="javascript:window.open('http://<rest-of-url>'); return false;"></a>

DOM 元素的 onclick 属性未定义。

顺便说一句:我真正想做的是获取源中指定的 URL(请注意,不是源中的内容,那里有真正的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风月客 2024-11-23 22:27:40

e.getAttribute('onclick') 不起作用?

e.getAttribute('onclick') doesn't work?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文