分享

DOMContentLoaded 与 onload的区别

 木木的阳光 2011-03-25
1.DOMContentLoaded
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等内容都加载完毕才会执行
参考:
1.https://developer.mozilla.org/en/Gecko-Specific_DOM_Events
 
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/beimuaihui/archive/2009/04/27/4130275.aspx

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多