如何通过注入脚本修改/扩展 javascript 函数?
假设这个函数...
function foo(param){
// original works
}
已经存在于 html 文档中。
我有一个书签,可以将外部脚本注入到文档中。从该脚本中,我想将 foo() 函数的行为修改为...
function foo(param){
// original works
bar(param);
}
bar() 是注入脚本中的一个新函数。 我在注入的脚本中复制 foo 没有问题。
我该怎么做?
Lets say this function...
function foo(param){
// original works
}
is already in-place in an html document.
I have a bookmarklet that injects an external script to the document. From that script, I want to modify the behavior of foo() function into this...
function foo(param){
// original works
bar(param);
}
bar() is a new function in the injected script.
I have no problem duplicating foo in the injected script.
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
javascript 中的一切都可以是对象,包括函数。考虑到这一点,您可以创建旧函数的副本,然后在引用副本时覆盖新函数:
Everything in javascript can be an object, including functions. With this in mind, you can create a duplicate of the old function, then override the new one while referencing the duplicate: