如何知道哪个 HTML/.js 文件(以及可能的文件行)包含另一个 .js 文件?萤火虫不知何故?

发布于 2024-12-10 03:09:00 字数 183 浏览 0 评论 0原文

因此,我在工作中调试了一些我没有编写的代码,并且我无法理解为什么在 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 技术交流群。

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

发布评论

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

评论(1

南城追梦 2024-12-17 03:09:00

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.

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