Situation One
<script>
var i;
function sayHello() {
var x=100;
alert(x);
x++;
}
sayHello(); // 输出100
alert(x); // 报错,因为x是局部变量,访问不到
</script>
Situation Two
<script>
function sayHello() {
var x=100;
if (x==100) {
var y=x+1;
alert(y); // 输出101
}
alert(y); // 也输出101,在方法内部,不存在块级作用域。
}
sayHello();
</script>
时间: 2024-10-06 10:01:49