欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery与JavaScript的加载机制

程序员文章站 2022-07-13 12:50:49
...

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>