摘要: Situation One<script> var i; //全局变量 //方法名是camel命名法 //方法里面的变量是局部变量 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); //.. 阅读全文
posted @ 2012-04-05 08:28 秋恨雪 阅读(4719) 评论(1) 推荐(0) 编辑