码迷,mamicode.com
首页 > 其他好文 > 详细

变量和属性

时间:2015-06-11 12:24:43      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:

 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>

 

变量和属性

标签:

原文地址:http://www.cnblogs.com/linxd/p/4568683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!