JS函数03
Posted 冯志国
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS函数03相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script type="text/javascript"> //变量作用域 var x=1; function test(){ document.write(‘函数体内x的值为:‘+x+‘<br/>‘); //undefined,x值取下面的,但是取不到值 var x=19; document.write(‘函数体内对x重新赋值,此时x的值为:‘+x+‘<br/>‘); //19 } document.write(‘函数体外x的值为:‘+x+‘<br/>‘); //1 test(); document.write(‘x的值为:‘+x+‘<br/>‘); //1 //document.write(‘<hr color="red"/>‘); </script> </body> </html>
以上是关于JS函数03的主要内容,如果未能解决你的问题,请参考以下文章