在 javscript 中,我们可以做到这一点
var text = "the original text";
text+=";Add this on";
如果一个库已经定义了一个函数(例如)
//In the js library
library.somefunction = function() {...};
有没有办法添加一些东西以便我可以运行两个功能?
var myfunction = function() {...};
就像是:
library.somefunction += myfunction
所以两者myfunction()
和原始library.somefunction()
都运行?