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>
上一篇: javascript 与 jQuery添加类的区别
下一篇: 12个JQuery小贴士