电脑爱好者之家

当前位置: 主页 > 开发资料 > 网页设计教程 >

domcontentloaded 与 onload的区别

时间:2015-02-09 19:46来源:未知 作者:机器AI 点击:
1.DOMContentLoaded是 FF,Opera 9的特有的Event, 当所有DOM解析完以后会触发这个事件。 jquery的ready(示例:$(selector).ready(function(){})) ,MT的onDomReady IE下是scrollleft事件可以时就表示DomcontentLoaded: var temp = document.createElement(div);
1.DOMContentLoaded是
FF,Opera 9的特有的Event, 当所有DOM解析完以后会触发这个事件。
 
jquery的ready(示例:$("selector).ready(function(){})) ,MT的onDomReady
 
IE下是scrollleft事件可以时就表示DomcontentLoaded: var temp = document.createElement('div');temp.doScroll('left');
 
Fired on a Window object when a document's DOM content is finished loading, but unlike "load", does not wait until all images are loaded. Used for example by GreaseMonkey to sneak in to alter pages before they are displayed.
 
This event, as many others on this page, is dispatched to "trusted" targets only; for example, it is not dispatched to the content of the main browser object in Firefox, even if it comes from a chrome:/ URI.
 
2.Onload
 
onload要等到所有页面元素加载完成才会触发, 包括页面上image、flash、iframe等内容都加载完毕才会执行
 
(责任编辑:机器AI)
织梦二维码生成器
顶一下
(1)
100%
踩一下
(0)
0%
------分隔线----------------------------
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 验证码:点击我更换图片
栏目列表
推荐内容