js中一个函数中调用另一个函数,内部函数怎么访问外部函数的变量

2024-11-02 04:30:39
推荐回答(1个)
回答1:

var num;
function a(){ alert(num); }
function b(){ 
num=3;
a();
}
b();