加载的 JavaScript 文件和动态事件
有人知道有一个工具可以收集网页加载的所有js文件吗?
我知道Firebug通过脚本选项卡为我提供了随网页下载的所有js文件,但我必须从选项卡中复制URL并进行一一下载。
另一个问题,如果我在网页中有一个元素,例如:
<a href="#" id="test1" ...>
我怎样才能知道与该元素相关的所有事件?例如,通过 JavaScript 在 onsubmit
事件中动态添加的事件。
document.getElementById("test1").onclick = "function()...."
Anyone knows a tool that collect all the js files that are loaded with a web page?
I know that Firebug through the script tab gives me all the js files downloaded with the web page, but I have to copy the URL from the tab and make the download one by one.
Another question, if I have one element in the web page, for example:
<a href="#" id="test1" ...>
How can I know all the events associated with this element? Events that were add dynamically for example in the onsubmit
event through JavaScript, for example.
document.getElementById("test1").onclick = "function()...."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个问题: Chrome的检查器工具
第二个问题:参考这篇文章:检查任何 DOM 元素的附加事件处理程序
First Question: Chrome's inspector tool
Second Question: refer to this post: Inspect attached event handlers for any DOM element