javascript 变量作用域 javascript 放在 head 和 body 部分 javascript 算术运算符 javascript 变量作用域 <html> <body onload = checkscope();> <script type = "text/javascript"> <!-- var myVar = "global"; // Declare a global variable function checkscope( ) { var myVar = "local"; // Declare a local variable document.write(myVar); } //--> </script> </body> </html> javascript 放在 head 和 body 部分 javascript 算术运算符