标签:ret class net code 作用域链 return 技术 cti csdn
<script type="text/javascript"> /** * 作用域链: */ var a = "a"; function hao947(){ var b = "b"; alert(a);// output a alert(b);// output b // alert(c);// output undefind function hao(){ var c = "c"; alert(a);// output a alert(b);// output b alert(c);// output c } return hao(); } hao947(); alert(a); // output a // alert(b); // output undefind // alert(c); // output undefind </script>
标签:ret class net code 作用域链 return 技术 cti csdn
原文地址:http://www.cnblogs.com/llguanli/p/6840341.html