摘要: a = "global"; function func () { alert(a); // undefined var a = "local"; alert(a); // local } func();javascript语言有... 阅读全文
posted @ 2014-12-03 19:12 ^cherish~ 阅读(118) 评论(0) 推荐(0)