码迷,mamicode.com
首页 > Web开发 > 详细

jQuery和dom页面加载完成时触发的事件

时间:2018-08-30 00:09:44      阅读:673      评论:0      收藏:0      [点我收藏+]

标签:har   code   asc   insert   onload   utf-8   完成   doc   load   

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="UTF-8">
 5         <title>Insert title here</title>
 6         <script type="text/javascript" src="js/jquery-1.8.3.js"></script>
 7         <script type="text/javascript">
 8             //jQuery的页面加载完成时触发的事件
 9             $(document).ready(function(){
10                 alert("aa");
11             });
12             
13             //dom对象的页面加载完成时触发的事件
14             /* window.onload=function(){
15                 alert("bb");
16             } */
17         </script>
18     </head>
19     <body>
20         
21     </body>
22 </html>

 

jQuery和dom页面加载完成时触发的事件

标签:har   code   asc   insert   onload   utf-8   完成   doc   load   

原文地址:https://www.cnblogs.com/xiaostudy/p/9557459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!