`
y1d2y3xyz
  • 浏览: 256673 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

jquery源码-jquery()

阅读更多
源码95~289行,jquery.fn核心函数(utils)
jQuery.fn = jQuery.prototype = {
	constructor: jQuery,
	init: function( selector, context, rootjQuery ) {},//下面单独讲

	// Start with an empty selector
	selector: "",

	// The current version of jQuery being used
	jquery: "1.8.2",//当前版本

	// The default length of a jQuery object is 0
	length: 0,//定义jquery初始化对象的长度

	// The number of elements contained in the matched element set
	size: function() {},//返回当前对象长

	toArray: function() {},//数组转换

	// Get the Nth element in the matched element set OR
	// Get the whole matched element set as a clean array
	get: function( num ) {},//获取jquery对象中的第num+1个元素

	// Take an array of elements and push it onto the stack
	// (returning the new matched element set)
	pushStack: function( elems, name, selector ) {},//将DOM集合元素elems添加jquery栈中

	// Execute a callback for every element in the matched set.
	// (You can seed the arguments with an array of args, but this is
	// only used internally.)
	each: function( callback, args ) {},//见jQuery.each

	ready: function( fn ) {},//见jQuery.ready.promise()

	eq: function( i ) {},//返回第i+1个元素

	first: function() {},//返回第一个元素

	last: function() {},//返回最后一个元素

	slice: function() {},

	map: function( callback ) {},

	end: function() {},

	// For internal use only.
	// Behaves like an Array's method, not like a jQuery method.
	push: core_push,
	sort: [].sort,
	splice: [].splice
};

// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;




init方法

init方法实际就是juqery的主函数 $()或jQuery()
$()参数:
   selector: 选择器(支持字符串,dom元素,数组,函数,jQuery对象,null,undefined,false)  
   content : 一个待查找的 DOM 元素集、文档或 jQuery 对象。
   rootjQuery : 当前文档作用域的根节点


init: function( selector, context, rootjQuery ) {
		var match, elem, ret, doc;

		// Handle $(""), $(null), $(undefined), $(false)
		if ( !selector ) {
			return this;
		}

		// Handle $(DOMElement) 一个参数,且为DOM元素 $(body)
		if ( selector.nodeType ) {
			this.context = this[0] = selector;
			this.length = 1;
			return this;
		}

		// Handle HTML strings //html字符串
		if ( typeof selector === "string" ) {//'<tag>'形式字符串 如 $('<input>')
			if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
				// Assume that strings that start and end with <> are HTML and skip the regex check
				match = [ null, selector, null ];

			} else {//含html的字符串或含#id形式的字符串
                                
				match = rquickExpr.exec( selector );
			}

			// Match html or make sure no context is specified for #id
			if ( match && (match[1] || !context) ) {
                                //如 $("<div><p>Hello</p></div>")
				// HANDLE: $(html) -> $(array)
				if ( match[1] ) {
					context = context instanceof jQuery ? context[0] : context;
					doc = ( context && context.nodeType ? context.ownerDocument || context : document );

					// scripts is true for back-compat
					selector = jQuery.parseHTML( match[1], doc, true );
					if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
						this.attr.call( selector, context, true );
					}

					return jQuery.merge( this, selector );

				// HANDLE: $(#id)
				} else {
					elem = document.getElementById( match[2] );

					// Check parentNode to catch when Blackberry 4.6 returns
					// nodes that are no longer in the document #6963
					if ( elem && elem.parentNode ) {
						// Handle the case where IE and Opera return items
						// by name instead of ID
						if ( elem.id !== match[2] ) {
							return rootjQuery.find( selector );
						}

						// Otherwise, we inject the element directly into the jQuery object
						this.length = 1;
						this[0] = elem;
					}

					this.context = document;
					this.selector = selector;
					return this;
				}

			// HANDLE: $(expr, $(...))
			} else if ( !context || context.jquery ) {
				return ( context || rootjQuery ).find( selector );

			// HANDLE: $(expr, context)
			// (which is just equivalent to: $(context).find(expr)
			} else {
				return this.constructor( context ).find( selector );
			}

		// HANDLE: $(function) 
                // $(function(){ 
                     //Document is ready
                //});
		// Shortcut for document ready
		} else if ( jQuery.isFunction( selector ) ) {
			return rootjQuery.ready( selector );
		}

		if ( selector.selector !== undefined ) {
			this.selector = selector.selector;
			this.context = selector.context;
		}

		return jQuery.makeArray( selector, this );
	}


1.jQuery()或$()
//Handle $(""), $(null), $(undefined), $(false), $()
if ( !selector ) {
	return this;//返回该对象
}

2.jQuery(element)或$(element)
// Handle $(DOMElement) 一个参数,且为DOM元素 $(body)
if ( selector.nodeType ) {
	this.context = this[0] = selector;//设置该对象的context属性为该DOM元素
	this.length = 1;
	return this;
}

3.jQuery('<tag>')或$('<tag>')
// Handle $('<input>',document.forms[0]) 
// 匹配类似"ddd<a href='www.sina.com'>新浪网</a>asd" 格式,返回match[1]的值为"<a href='www.sina.com'>新浪网</a>"
if ( match[1] ) {
    context = context instanceof jQuery ? context[0] : context;//context参数是否jQuery实例
    //获取上下文,当上下文为DOM元素时,则为根节点,否则为document文档
    doc = ( context && context.nodeType ? context.ownerDocument || context : document );

    // scripts is true for back-compat
    selector = jQuery.parseHTML( match[1], doc, true );
    if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
        this.attr.call( selector, context, true );
    }
    return jQuery.merge( this, selector );
}else{
 //
}

4.jQuery(#id)或$(#id)
{
    //match[2]为匹配#id的格式,如果match[2]不为空则返回id的字符表示,如“#name”则match[2]值为“name”
    elem = document.getElementById( match[2] );

    // Check parentNode to catch when Blackberry 4.6 returns
    // nodes that are no longer in the document #6963
    if ( elem && elem.parentNode ) {
        // Handle the case where IE and Opera return items
        // by name instead of ID
        //由于IE和Opera浏览器在调用getElementById方法时用会同时把name相同的属性找出来,所以针对这中情况就利用name属性方式查找
        if ( elem.id !== match[2] ) {
            return rootjQuery.find( selector );
        }

        // Otherwise, we inject the element directly into the jQuery object
        this.length = 1;
        this[0] = elem;
    }

    this.context = document;
    this.selector = selector;
    return this;
}


5.jQuery(callback)或$(callback)
   return rootjQuery.ready( selector );//当参数类型为function时

6.jQuery(expr, $(...))或$(expr, $(...)),如:$("div>p",$(...)),$("input:radio",document.forms[0]),$("div.foo",document.forms[0])
if ( !context || context.jquery ) {
   return ( context || rootjQuery ).find( selector  );//
}


7.以上所有情况外的其他情况
    // HANDLE: $(expr, context)
    return this.constructor( context ).find( selector );
分享到:
评论

相关推荐

    jQuery源码 jQuery源码 jQuery源码

    jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery...jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQuery源码jQue

    jquery-migrate-3.0.0.min.js 含源码

    jquery-migrate-3.0.0.min.js 含源码 包含以下文件: jquery-migrate-3.0.0.min.js jquery-migrate-3.0.0.js // 这个是源码哦 截至2017.11.21, jQuery3.x 最新最稳定版本

    jquery-migrate-3.0.0.zip

    `jquery-migrate-3.0.0.js` 文件是源码形式,包含了完整的日志记录和修复功能,开发者可以在开发过程中使用,以便更好地理解哪些部分的代码需要进行调整。而`jquery-migrate-3.0.0.min.js` 文件则是经过minify处理的...

    jQuery源码分析-插件

    jQuery源码分析-插件

    jQuery-, jQuery源码解读 -- jQuery v1.10.2.zip

    《jQuery源码解读——深入理解jQuery v1.10.2》 jQuery,这个轻量级的JavaScript库,自2006年发布以来,以其简洁的API和强大的功能深受开发者喜爱,成为Web开发领域中不可或缺的一部分。本文将对jQuery v1.10.2的...

    jquery-easyui-1.5完整源码.zip

    在"jquery-easyui-1.5完整源码.zip"这个压缩包中,包含了EasyUI 1.5版本的完整源代码,这对于我们深入理解其工作原理、定制功能或优化性能具有极大的帮助。 首先,我们关注的是"src"文件夹。这个文件夹中的内容是...

    锋利的jQuery---附源码

    总之,《锋利的jQuery》这本书结合源码,不仅教授了jQuery的基本用法,还深入探讨了高级特性和实践应用,对于想要提升JavaScript技能和深入了解jQuery的开发者来说,是一份非常宝贵的参考资料。通过学习和实践书中...

    jquery-easyui-1.2.4源码

    jquery-easyui-1.2.4源码,在其他地方是没有的,内部发布

    jquery-source-code-1:jquery源码-jquery source code

    jquery源码分析(2.0.3版本) 大概内容大纲 (功能(){ (21,94)定义了一些变量和函数jQuery = function(){} (96,284)给JQ对象添加一些方法和属性 (285,347)扩展名:JQ的继承方法 (349,817)jQuery....

    jQuery UI以及jQuery easy-ui技术手册

    **jQuery UI技术手册** jQuery UI 是一个基于jQuery库的开源前端框架,用于构建...这两个框架的文档(`.chm`文件)是学习和使用的宝贵资源,而`jquery-ui-1.8.18.custom.zip`文件则为开发者提供了直接操作源码的可能。

    jQuery-with-XSS 检测jQuery版本是否存在XSS漏洞

    网站中包含大量的动态内容以提高用户体验,比过去要复杂得多。所谓动态内容,就是根据用户环境和需要,Web应用程序能够输出相应的内容。动态站点会受到一种名为“跨站脚本攻击”(Cross Site Scripting, 安全专家们...

    jQuery源码分析-事件(1).

    jQuery源码分析-事件(1).

    jquery-ui-1.9.2.custom.min.js

    jquery-ui-1.9.2.custom.min.js源码文件,文件需要国外下载,因为下载过了,有需要可以直接拿去用,加快开发进度,不要为了下载文件而党务过多的时间。

    JQuery Gantt-Demo

    10. **源代码分析**:文件"mbielanczuk-jQuery.Gantt-6edaaab"很可能包含了这个示例的源代码,通过研究源码,开发者可以深入理解其工作原理,学习如何自定义和扩展Gantt图组件。 总之,JQuery Gantt-Demo是一个实用...

    jquery-validation-1.19.1.zip

    该压缩包“jquery-validation-1.19.1.zip”包含了完整的源码、库文件、示例、测试用例以及相关文档,便于开发者深入理解和使用。 首先,我们来看看“Gruntfile.js”。这是一个基于Grunt的任务配置文件,Grunt是...

    jQuery jQuery-UI

    - **src**:可能是jQuery或jQuery UI的源码目录,对于深入学习和定制很有帮助。 - **themes**:存储了jQuery UI的各种主题样式文件。 - **demo**:可能包含jQuery和jQuery UI组件的示例代码,便于开发者学习和参考。...

    jquery-3.3.1.js和jquery-3.3.1.min.js.zip

    在这个压缩包中,我们找到了两个版本的jQuery 3.3.1——jquery-3.3.1.js和jquery-3.3.1.min.js,它们各自有着不同的用途和特点。 首先,jquery-3.3.1.js是未压缩的源代码版本,包含了完整的调试信息和注释。这个...

    最新jquery-weui

    在 `jQuery WeUI` 的源码中,我们可以深入理解每个组件的工作原理和实现方式。源码分析有助于开发者进行自定义修改或扩展,以满足特定项目需求。 4. **Demo** 提供的 demo 文件是各种组件和布局的实际应用示例,...

    jquery-easyui-1.3.3源码 未压缩

    《jQuery EasyUI 1.3.3 源码解析与学习指南》 jQuery EasyUI 是一个基于 jQuery 的前端框架,它提供了一系列的组件和工具,使得开发者能够快速构建功能丰富的用户界面。在这个未压缩的版本中,我们可以深入研究其...

    jquery-easyui-1.7.0.zip官方文档

    《jQuery EasyUI 1.7.0:打造高效前端界面的利器》 jQuery EasyUI 是一个基于 jQuery 的轻量级框架,它为开发者提供了一系列组件,使得构建交互式、响应式的Web应用程序变得更加简单。在1.7.0版本中,这个强大的...

Global site tag (gtag.js) - Google Analytics