如何从加载的js文件中提醒每个函数名称?
我想知道,是否有某种方法可以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有 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).