1. js没有块级作用域
if(true){ var color ="blue"; } alert(color); //"blue" for (var i=0; i<10 i++){ doSomething(i); } alert(i); // "10"