我有一个主要功能。
function google(arg){
alert(arg);
}
function yahoo(){
this function requires my arg object passed above.
}
我将对象传递给另一个页面中的google
函数,但我无法明确调用yahoo
方法。是否有任何模式或方式可以在两个函数之间传递对象。
我听说过apply and call
方法,但不确定。
答案 0 :(得分:1)
这会有用吗?
var theArg;
function google(arg) {
theArg = arg;
}
function yahoo() {
// use theArg;
}