可能重复:
Difference between using var and not using var in JavaScript
这两种方法的主要区别是什么?有人可以帮助我理解。如果在函数内使用“var”关键字声明变量,这意味着什么?在这两种情况下,计时器按预期清除3秒。
Approach 1:
<html>
<body>
<script type="text/javascript">
function function2()
{
int=self.setInterval(function(){
alert(int);
clearInterval(alert("in clear"+ int));
},3000);
}
</script>
<button onclick="function2()">Start</button>
</body>
</html>
Approach 2
<html>
<body>
<script type="text/javascript">
function function2()
{
var int=self.setInterval(function(){
alert(int);
clearInterval(alert("in clear"+ int));
},3000);
}
</script>
<button onclick="function2()">Start</button>
</body>
</html>
答案 0 :(得分:2)
如果不使用var,则隐式将该变量放在全局命名空间中。使用var,变量是函数的本地变量。