如何知道哪个 HTML/.js 文件(以及可能的文件行)包含另一个 .js 文件?萤火虫不知何故?
因此,我在工作中调试了一些我没有编写的代码,并且我无法理解为什么在 Firefox 中加载的 .js 文件比在 Chrome 中加载的要多。
搜索代码后,我似乎无法找到这些 .js 文件的包含位置。我想知道 Firebug 是否可以告诉我这个问题,或者另一个附加组件或其他方法是否可以完全解决这个问题。
感谢您抽出时间。
So I'm debugging some code at work that I didn't write, and I'm having trouble understanding why in Firefox I have additional .js files loaded than I do in Chrome.
After scouring the code I can't seem to locate where these .js files are being included. I'm wondering if this is something Firebug can tell me or if another add-on or another method entirely can come to the rescue.
Thanks for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Firefox 可以在 DOM 操作上触发断点(右键单击您感兴趣的节点) - 如果在页面运行时插入脚本,您可以在页面加载一开始就中断,然后设置 DOM插入脚本的父标记上的断点。然后,当添加脚本标签时,您将获得一个中断和一个调用堆栈。
Firefox can trigger a breakpoint on DOM manipulation (right-click on the node you're interested in) - if the scripts are being inserted while the page is running, you could break at the very start of the page loading and then set a DOM breakpoint on the parent tag of where the script is being inserted. Then, when the script tag is added, you'll get a break and a call stack.