手机
当前位置:查字典教程网 >编程开发 >C语言 >jquery ready函数深入分析
jquery ready函数深入分析
摘要:最近看一些关于jqueryready有人说他缓慢,有人说他快,说法不一。于是自己深入研究一下。首先看了一下jquery文档关于ready的描...

最近看一些关于jquery ready 有人说他缓慢,有人说他快,说法不一。 于是自己深入研究一下。首先看了一下jquery 文档 关于ready 的描述

While JavaScript provides the load event for executing code when a page is rendered, this event does not get triggered until all assets such as images have been completely received. In most cases, the script can be run as soon as the DOM hierarchy has been fully constructed. The handler passed to .ready() is guaranteed to be executed after the DOM is ready, so this is usually the best place to attach all other event handlers and run other jQuery code. When using scripts that rely on the value of CSS style properties, it's important to reference external stylesheets or embed style elements before referencing the scripts. In cases where code relies on loaded assets (for example, if the dimensions of an image are required), the code should be placed in a handler for the load event instead.

翻译一下

虽然JavaScript提供了load事件,当页面渲染完成之后会执行这个函数,在所以元素加载完成之前,这个函数不会被调用,例如图像。但是在大多数情况下,只要DOM结构加载完,脚本就可以尽快运行。传递给.ready()的事件句柄在DOM准备好后立即执行,因此通常情况下,最好把绑定事件句柄和其他jQuery代码都到这里来。但是当脚本依赖于CSS样式属性时,一定要在脚本之前引入外部样式或内嵌样式的元素。

如果代码依赖于需加载完的元素(例如,想获取一个图片的尺寸大小),应该用.load()事件代替,并把代码放到load事件句柄中。

依照文档上面的说明,在页面内有大量文档结构,图片资源时候,ready 是快于 load 的。文档里面也清晰的分析了什么时候用ready 什么时候用load。

下面分析一下jquery ready 的运行流程

$(handler) or $(document).ready(handler) → ready() → bindReady() → 执行readyList.add( fn ) fn

大致看一下源码

下面是jquery 的 对象的 ready 源码

jQuery.fn = jQuery.prototype = { constructor: jQuery, init: function( selector, context, rootjQuery ) { // HANDLE: $(function) // Shortcut for document ready // 如果函数,则认为是DOM ready句柄 if ( jQuery.isFunction( selector ) ) { return rootjQuery.ready( selector ); } }, ready: function( fn ) { // Attach the listeners jQuery.bindReady(); // 绑定DOM ready监听器,跨浏览器,兼容标准浏览器和IE浏览器 // Add the callback readyList.add( fn );// 将ready句柄添加到ready异步句柄队列 return this; } };

调用jquery 的 bindReady , 增加ready回调!

下面看一下 bindReady 大致源码

bindReady: function() { // jQuery.bindReady if ( readyList ) { return; } readyList =jQuery.Callbacks( "once memory" )// 初始化ready异步事件句柄队列 // Catch cases where $(document).ready() is called after the // browser event has already occurred. // 如果DOM已经完毕,立即调用jQuery.ready if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready // 重要的是异步 return setTimeout( jQuery.ready, 1 ); } //下面是一些防御性的编程 故此省略 ...... }

这个应该很清楚 document.readyState == 'complete' 就会 执行 jquery 的 ready ,我很困惑的是为什么是 setTiemout(jQuery.ready,1) ,请返回上面看ready 的代码, readyList.add( fn ), 如果不是异步的,执行回调的就会放到 readyList.add( fn )之前了,因为执行是在jQuery 的ready 里面 readyList.fireWith( document, [ jQuery ] );readylist 是jquery 的callbacks ,就是管理回调函数的!不清楚的可以看看文档。

注:你会发现有两个ready,这两个是不同的,一个放到 jquery.prototype 就是我们$(doucument).ready这个,另一个是jquery的对象方法判断是否已经ready了的方法

ps : jquery博大精深,文章有错误之处,还请各位指正!

以上就是对 jquery ready的资料整理,后续继续整理相关资料,谢谢大家对本站的支持!

【jquery ready函数深入分析】相关文章:

C++ using namespace std 用法深入解析

C++ 智能指针深入解析

shared_ptr线程安全性全面分析

pcre函数详细解析

memset函数的使用分析

C++函数重载的深入解析

C与C++ 无参函数的区别解析

引用参数和传值参数的区别深入解析

pthread_cond_wait() 用法深入分析

C++中Operator类型强制转换成员函数解析

精品推荐
分类导航