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

全局变量与局部变量与其引入位置的关系

时间:2016-08-06 11:08:25      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

<html>
    <head>
        <title> 单击事件举例 </title> 
<!-- one 外不行 内可以-->
   </head>
<!-- two外不行 内可以--> 
    <body>    
    <!-- three外不行 内可以-->    
       <input type="button" value="改变颜色" onclick="tell()" />
           <!-- four外不行 内可以--> 
        <div id="change">1233</div>
        <!-- five 外不行 内可以-->
        <style type="text/css">
        div{
            width: 100px;
            height: 100px;
            background-color: red;
        }
        </style>
        <!-- six外不行 内可以-->
    </body>  
    <!-- seven 内外都行外加不加window都行
    -->
    <script type="text/javascript" src="wode.js"></script> 
      
</html>
            function tell() {
                var change = document.getElementById("change");
                change.style.backgroundColor = "black";
            }
            // demo1-3-9.html的js

建议引入位置为body结束后

全局变量与局部变量与其引入位置的关系

标签:

原文地址:http://www.cnblogs.com/luoluo189/p/5743372.html

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