<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>声明全局变量的方法</title> </head> <body> <script> // 1.在全局声明的变量,就是全局变量,例如: var a = 10; (a); // 10 // 2.在函数内声明全局变量的方式。 function f() { a = 20; } // 执行此函数。 f(); (a); // 20 // 3.使用window(全局对象)来声明,全局对象的属性也是全局变量。 = 50; (test); // 50 function f1() { = 60; } f1(); (test); // 60 </script> </body> </html>