87,990
社区成员
发帖
与我相关
我的任务
分享
function adApplyDemo(x)
{
return x;
}
function helloworldFunc(args)
{
args[0] = "hello " + args[0];
return args;
}
alert(adApplyDemo("world")); // 输出 world
var oldFunc = window["adApplyDemo"];
window["adApplyDemo"] = function()
{
return oldFunc.apply(this, helloworldFunc(arguments));
}
alert(adApplyDemo("world")); // 输出 hello world
