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>