jQuery与JavaScript的加载机制

js文件:

hello.js

 

 function test(){
     alert("hello");
 }

 //window.onload=test;
 //加载JavaScript $(document).ready(test);//加载jQuery

 

 

test文件:

test.html

 

<html>
    <head>
        <script type="text/javascript" src="jquery-1.4.4.js"></script> 
        <script type="text/javascript" src="hello.js"></script> 
    </head> 
<body> 
 </body>
 </html>

 

 

你可能感兴趣的:(JavaScript,html,jquery)