Blogger Information
Blog 22
fans 0
comment 0
visits 17801
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
window.onload和$().ready 比较
yestrue的博客
Original
760 people have browsed it

window.onload比$(document).ready加载时间要长,onload要加载dom,还要加载页面元素。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>onload和ready</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<h3>onload和ready的先后测试</h3>
<script>
window.onload = function(){ alert('我是onload')}
$(document).ready(function(){alert('我是ready')});
</script>
</body>
</html>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post