<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结束后