作用域

var scrope = "globe";

(function(){

    alert(scrope)

})()

(function(){

    var scrope = "local";

    alert(scrope)

})()

(function(){

    var scrope;

    alert(scrope)

})()

alert(1);

 alert(1);

posted @ 2014-03-10 11:13  哥笑的很阳光  阅读(118)  评论(0编辑  收藏  举报