我有一个主要功能。
function google(arg){
alert(arg);
}
function yahoo(){
this function requires my arg object passed above.
}
我将我的对象传递给google
另一个页面中的函数,但我无法yahoo
显式调用方法。是否有任何模式或方式可以在两个函数之间传递对象。
我听说过apply and call
方法,但不确定。
我有一个主要功能。
function google(arg){
alert(arg);
}
function yahoo(){
this function requires my arg object passed above.
}
我将我的对象传递给google
另一个页面中的函数,但我无法yahoo
显式调用方法。是否有任何模式或方式可以在两个函数之间传递对象。
我听说过apply and call
方法,但不确定。