$(document).ready(function(){ ... window.onload =function(){ ... ;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>1-2</title>
<script type="text/javascript">
function t(){
    alert("test1")
}
function b(){
    alert("test2")
}
window.onload =t ;
window.onload =b ;
</script>
</head>
<body>
</body>
</html>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<!-- 引入 jQuery -->
<script src="../scripts/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
//等待dom元素加载完毕.
$(document).ready(function(){
    alert("Hello~");
});
$(document).ready(function(){
    alert("World!");
});
</script>
</head>
<body>
</body>
</html>

 

posted @ 2017-10-17 09:18  sky20080101  阅读(70)  评论(0)    收藏  举报