如何从加载的js文件中提醒每个函数名称?

发布于 2024-12-02 06:18:15 字数 164 浏览 1 评论 0原文

我想知道,是否有某种方法可以 console.log 或警报正在运行的函数名称。我的意思是我可以覆盖所有函数执行,并从 Mozilla 的 firebug 控制台附加类似 console.log(this.arguments.callee.name) 的内容吗?

I wonder, is there some way to console.log or alert running function name. I mean can I override all the function execution, and append something like console.log(this.arguments.callee.name from Mozilla's firebug console?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

魂归处 2024-12-09 06:18:15

还有 JavaScript Deobfuscator 会记录所有函数调用(“执行的脚本”)。然而,仅记录函数名称会很困难 - 大多数函数没有名称(分配给对象/对象原型属性的匿名函数)。

There is also JavaScript Deobfuscator that will log all function calls ("executed scripts"). Logging function names only will be hard however - most functions don't have names (anonymous functions assigned to object / object prototype properties).

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