变量和属性

 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6     <script>
 7         // 使用没有定义的变量 --- 报错
 8         alert(a);
 9 
10         // 使用没有定义的属性 --- undefined
11         alert(window.a);
12     </script>
13 </head>
14 <body>
15 
16 </body>
17 </html>
原文地址:https://www.cnblogs.com/linxd/p/4568683.html