js中局部变量和全局变量的问题
varscope='global';alert(scope);functiontestScope(){alert(scope);varscope='local';aler...
var scope = 'global' ;
alert(scope);
function testScope(){
alert(scope);
var scope = 'local' ;
alert(scope);
}
这样的三个alert分别是"global","undefined","local"。第二个为什么是未定义啊? 展开
alert(scope);
function testScope(){
alert(scope);
var scope = 'local' ;
alert(scope);
}
这样的三个alert分别是"global","undefined","local"。第二个为什么是未定义啊? 展开
2个回答
展开全部
其实你这个代码的效果和下面是一样的:
var scope = 'global' ;
alert(scope);
function testScope(){
var scope;
alert(scope);
scope = 'local' ;
alert(scope);
}
这里就涉及到了,js对变量的处理问题了,js是这样的,无论你在js那里定义变量,它在执行的时候都会变成在开头(函数的开始)就定义所有的变量,但是不赋初始值,所有第二个会alert出 undefined。也是说第二个scope其实是局部变量,但没有初始值。就这样。
var scope = 'global' ;
alert(scope);
function testScope(){
var scope;
alert(scope);
scope = 'local' ;
alert(scope);
}
这里就涉及到了,js对变量的处理问题了,js是这样的,无论你在js那里定义变量,它在执行的时候都会变成在开头(函数的开始)就定义所有的变量,但是不赋初始值,所有第二个会alert出 undefined。也是说第二个scope其实是局部变量,但没有初始值。就这样。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询