jquery-2.0.3 源码分析 整体架构
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery-2.0.3 源码分析 整体架构相关的知识,希望对你有一定的参考价值。
关键
var jQuery = function( selector, context ) {
return new jQuery.fn.init();
}
jQuery.fn = jQuery.prototype = {
constructor: jQuery,
name: \'hello\',
init: function() {
return this;
}
}
jQuery.fn.init.prototype = jQuery.fn;
var a = new jQuery();
console.log( a.name ) //hello
扩展
jQuery.extend = jQuery.fn.extend = function() { jQuery.extend 对jQuery本身的属性和方法进行了扩展 : jQuery.fn.extend 对jQuery.fn的属性和方法进行了扩展 :
转载:
以上是关于jquery-2.0.3 源码分析 整体架构的主要内容,如果未能解决你的问题,请参考以下文章