首页 > 学院 > 基础常识 > 正文

jquery中ready()函数执行的时机和window的load事件比较

2020-03-01 04:32:07
字体:
来源:转载
供稿:网友

  这篇文章主要介绍了html' target='_blank'>jquery中ready()函数执行的时机和window的load事件比较的相关资料,需要的朋友可以参考下

  jquery的ready()实现的是 DOMContentLoaded 事件,DOMContentLoaded与window load事件的区别

  简单的说ready()是在文档加载完成就会触发,此时图片等资源可能还没有完全加载, load是在所有资源都加载完成后才会触发

  看下ready函数的代码就什么都清楚了。下面的代码加上了注释

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 // Handle when the DOM is ready ready: function() { // Make sure that the DOM is not already loaded if ( !jQuery.isReady ) { // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready, 13 ); } // Remember that the DOM is ready jQuery.isReady = true; // If there are functions bound, to execute if ( readyList ) { // Execute all of them var fn, i = 0; while ( (fn = readyList[ i++ ]) ) { fn.call( document, jQuery ); } // Reset the list of functions readyList = null; } // Trigger any bound ready events if ( jQuery.fn.triggerHandler ) { jQuery( document ).triggerHandler( "ready" ); } } },

  以上所述就是本文的全部内容了,希望大家能够喜欢。

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表