jq源码解析之绑在$,jQuery上面的方法(实例讲解)


Posted in jQuery onOctober 13, 2017

1.当我们用$符号直接调用的方法。在jQuery内部是如何封装的呢?有没有好奇心?

// jQuery.extend 的方法 是绑定在 $ 上面的。
jQuery.extend( {

 //expando 用于决定当前页面的唯一性。 /\D/ 非数字。其实就是去掉小数点。
 expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),

 // Assume jQuery is ready without the ready module
 isReady: true,

 // 报错的情况
 error: function( msg ) {
  throw new Error( msg );
 },

 // 空函数
 noop: function() {},

 // 判断是不是一个函数
 isFunction: function( obj ) {
  return jQuery.type( obj ) === "function";
 },

 //判断当前对象是不是window对象。
 isWindow: function( obj ) {
  return obj != null && obj === obj.window;
 },

 //判断obj是不是一个数字 当为一个数字字符串的时候页可以的哦 比如 "3.2"
 isNumeric: function( obj ) {

  var type = jQuery.type( obj );
  return ( type === "number" || type === "string" ) &&

   // 这个话的意思就是要限制 "3afc 这个类型的 字符串"
   !isNaN( obj - parseFloat( obj ) );
 },

 //判断obj 是不是一个对象
 isPlainObject: function( obj ) {
  var proto, Ctor;

  // obj 存在且 toString.call(obj) !== "[object object]"; 就肯定不是一个对象了。
  if ( !obj || toString.call( obj ) !== "[object Object]" ) {
   return false;
  }

  //getProto获取原型链上的对象。 getProto = Object.getPrototypeOf(); 获取原型链上的属性
  proto = getProto( obj );

  // getProto(Object.create(null)) -> proto == null 这种情况也是对象 obj = Object.create(null);
  if ( !proto ) {
   return true;
  }

  // obj 原型上的属性。 proto 上面有 constructor hasOwn = hasOwnPrototypeOf('name') 判断某个对象自身是否有 这个属性
  // Ctor: 当 proto 自身有constructor的时候, 取得constructor 这个属性的value 值。 其实就是 obj的构造函数。 type -> function
  Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
  //Ctor 类型为“function” 且 为构造函数类型吧。 这个时候 obj 也是对象。 我的理解 这个时候,obj = new O(); 其实就是某个构造函数的实列
  return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
 },
 //判断obj是不是一个空对象
 isEmptyObject: function( obj ) {
  //var o = {}
  var name;

  for ( name in obj ) {
   return false;
  }
  return true;
 },
 //获取js的数据类型。 其实方法就是 Object.prototype.toString.call(xx); xx 就是要检测的某个变量。 得到的结果是 "[object object]" "[object array]" ...
 type: function( obj ) {

  //除去null 和undefined 的情况。 返回本身。 也就是 null 或者 undefined. 因为 undefined == null -> true。
  if ( obj == null ) {
   return obj + "";
  }
  // 这个跟typeof xx(某个变量 ) -> undefined object,number,string,function,boolean(typeof 一个变量只能得到6中数据类型)
  /**
   * 1. obj 是一个对象 或者 obj 是一个 function 那么 直接class2type[toString.call(obj)] 这个话其实是在class2type 中根据key值找到对应的value。
   * class2type = {
   *  [object object]: "object",
   *  [object array]:"array" ...
   *
   * }
   * 这样类似的值。
   * class2type[toString.call(obj)] || "object" 连起来读就是,在class2type 中找不到类型的值,就直接返回 object
   *
   * 2.或者返回 typeof obj。的数据类型。 -> number, string,boolean 基本数据了类型吧。 (js 中有5中基本数据类型。 null ,undefined,number,string,boolean)
   */
  return typeof obj === "object" || typeof obj === "function" ?
   class2type[ toString.call( obj ) ] || "object" :
   typeof obj;
 },

 // 翻译为:全局的Eval函数。 说句实话。没有看懂这个是拿来干嘛的。 DOMval();
 /**
  *
  * @param code
  * function DOMEval( code, doc ) {
  doc = doc || document;

  var script = doc.createElement( "script" );

  script.text = code;
  doc.head.appendChild( script ).parentNode.removeChild( script );
 }
  创建一个 script标签, 或remove 这个标签。 目前没有搞懂拿来干嘛用。
  */
 globalEval: function( code ) {
  DOMEval( code );
 },

 // 这个是用来转为 驼峰的用函数吧。 ms- 前缀转为驼峰的吧。
 camelCase: function( string ) {
  return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
 },

 // each 方法。 $.each(obj,function(){}); 用于循环数组和对象的方法。
 each: function( obj, callback ) {
  var length, i = 0;

  if ( isArrayLike( obj ) ) { // 当obj 是一个数组的时候执行这个方法
   length = obj.length;
   for ( ; i < length; i++ ) {

    /*当$.each(obj,function(i,item){
      if( i = 2){
       return false。
      }
     })
     当$.each(obj,function(){}) 中的匿名函数中纯在 return false; 的时候跳出循环。
    */
    if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
     break;
    }
   }
  } else { // for in 循环对象。 callback.call(obj[i],i,obj,[i]) === false 跟数组循环是一道理
   for ( i in obj ) {
    if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
     break;
    }
   }
  }

  return obj;
 },

 // 去掉 text 两边的空白字符 $("input").val().trim() 一个道理吧。 text + "" 其实是为了把 text 转成一个字符串。 类型这种情况 123.replace(rtrim,"") 是会报错的。
 // 如果 123 + "" 其实变成了 "123"
 trim: function( text ) {
  return text == null ?
   "" :
   ( text + "" ).replace( rtrim, "" );
 },

 // $.makeArray 其实是将类数组转换成数组 对象。
 /**
  *
  *
  * @param arr
  * @param results
  * @returns {*|Array}
  * 比如: var b = document.getElementsByTagName("div"); b.reverse() 。 用b 来调reserver() 方法会直接报错的。因为这个时候b是类数组对象。
  * var a = $.makeArray(document.getElementsByTagName("div")); a.reverser()。 这样就不会报错了。
  *
  */
 makeArray: function( arr, results ) {
  var ret = results || [];

  if ( arr != null ) {
   if ( isArrayLike( Object( arr ) ) ) {
    jQuery.merge( ret,
     typeof arr === "string" ?
     [ arr ] : arr
    );
   } else {
    push.call( ret, arr );
   }
  }

  return ret;
 },

 /**
  *
  * @param elem 要检测的值
  * @param arr 待处理的数组
  * @param i 从待处理的数组的第几位开始查询. 默认是0
  * @returns {number} 返回 -1 。表示arr 中没有该value值, 或者该值的下表
  * $.inArray()。
  *
  */
 inArray: function( elem, arr, i ) {

  //如果arr 为 null 直接返回 -1 。
  /**
   * 对indxOf.call(arr,elem,i);方法的解释
   * var s = new String();
   * eg: var indexOf = s.indexOf; 用indexOf 变量来存字符串中的 indexOf的方法。
   * indexOf.call(arr,elem,i) ; 其实就是把字符串的indexOf 继承给数组,并且传递 elem 和 i 参数。
   * 更简单一点其实可以理解为: arr.indexOf(elem,i);
   */
  return arr == null ? -1 : indexOf.call( arr, elem, i );
 },

 // 合并数组
 /**
  *
  * @param first 第一个数组
  * @param second 第二个数组
  * @returns {*}
  */
 merge: function( first, second ) {
  var len = +second.length, //第二个数组的长度
   j = 0, //j 从0 开始
   i = first.length; //第一个数组的长度

  for ( ; j < len; j++ ) {
   first[ i++ ] = second[ j ];
  }
  // 其实用push 应该可以吧。

  first.length = i;

  return first;
 },
 /**
  *
  * @param elems 带过滤的函数
  * @param callback 过滤的添加函数
  * @param invert 来决定 $.grep(arr,callback) 返回来的数组,是满足条件的还是不满足条件的。 true 是满足条件的。 false 是不满足条件的。
  * @returns {Array}
  *
  * 返回一个数组。
  */
 grep: function( elems, callback, invert ) {
  var callbackInverse,
   matches = [],
   i = 0,
   length = elems.length,
   callbackExpect = !invert;

  // Go through the array, only saving the items
  // that pass the validator function
  for ( ; i < length; i++ ) {
   callbackInverse = !callback( elems[ i ], i );
   if ( callbackInverse !== callbackExpect ) {
    matches.push( elems[ i ] );
   }
  }

  return matches;
 },

 /**
  *
  * @param elems 带处理的数组
  * @param callback 回调函数
  * @param arg 这参数用在callback回调函数的。
  * callback(elems[i],i,arg)
  * @returns {*}
  *
  * $.map(arr,function(item,i,arg){},arg)
  * 将一个数组,通过callback 转换成另一个数组。
  * eg: var b = [2,3,4];
  * var a = $.map(b,function(item,i,arg){
  *   return item + arg;
  * },1)
  * console.log(a) [3,4,5]
  */
 map: function( elems, callback, arg ) {
  var length, value,
   i = 0,
   ret = [];

  // Go through the array, translating each of the items to their new values
  if ( isArrayLike( elems ) ) {
   length = elems.length;
   for ( ; i < length; i++ ) {
    value = callback( elems[ i ], i, arg );

    if ( value != null ) {
     ret.push( value );
    }
   }

  // Go through every key on the object,
  } else {
   for ( i in elems ) {
    value = callback( elems[ i ], i, arg );

    if ( value != null ) {
     ret.push( value );
    }
   }
  }

  // Flatten any nested arrays
  return concat.apply( [], ret );
 },

 // 对对象的一个全局标志量吧。 没搞懂具体用处
 guid: 1,

 // Bind a function to a context, optionally partially applying any
 // arguments.
 /**
  *
  * @param fn
  * @param context
  * @returns {*}
  *
  * es6也提供了 new Proxy() 。对象。
  */
 proxy: function( fn, context ) {
  var tmp, args, proxy;
  //当content是字符串的时候 
  if ( typeof context === "string" ) {
   tmp = fn[ context ];
   context = fn;
   fn = tmp;
  }

  // Quick check to determine if target is callable, in the spec
  // this throws a TypeError, but we will just return undefined.
  if ( !jQuery.isFunction( fn ) ) {
   return undefined;
  }

  // Simulated bind
  args = slice.call( arguments, 2 );
  proxy = function() {
   return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
  };

  // Set the guid of unique handler to the same of original handler, so it can be removed
  proxy.guid = fn.guid = fn.guid || jQuery.guid++;

  return proxy;
 },
 //$.now 当前时间搓
 now: Date.now,

 // jQuery.support is not used in Core but other projects attach their
 // properties to it so it needs to exist.
 /**
  * 检测浏览器是否支持某个属性
  * $.support.style
  */
 support: support
} );

以上这篇jq源码解析之绑在$,jQuery上面的方法(实例讲解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

jQuery 相关文章推荐
jQuery插件FusionCharts绘制2D双折线图效果示例【附demo源码】
Apr 14 jQuery
jQuery为某个div加入行样式
Jun 09 jQuery
jQuery 控制文本框自动缩小字体填充
Jun 16 jQuery
用户管理的设计_jquery的ajax实现二级联动效果
Jul 13 jQuery
jQuery实现简单的回到顶部totop功能示例
Oct 16 jQuery
jQuery zTree搜索-关键字查询 递归无限层功能实现代码
Jan 25 jQuery
jQuery实现为动态添加的元素绑定事件实例分析
Sep 07 jQuery
简单易扩展可控性强的Jquery转盘抽奖程序
Mar 16 jQuery
jQuery事件blur()方法的使用实例讲解
Mar 30 jQuery
JQuery发送ajax请求时中文乱码问题解决
Nov 14 jQuery
JQuery Ajax如何实现注册检测用户名
Sep 25 jQuery
jQuery ajax - getScript() 方法和getJSON方法
May 14 jQuery
bootstrap可编辑下拉框jquery.editable-select
Oct 12 #jQuery
jQuery中 DOM节点操作方法大全
Oct 12 #jQuery
jQuery自动或手动图片切换效果
Oct 11 #jQuery
jQuery使用bind函数实现绑定多个事件的方法
Oct 11 #jQuery
jQuery中过滤器的基本用法示例
Oct 11 #jQuery
jQuery中extend函数简单用法示例
Oct 11 #jQuery
jQuery实现的事件绑定功能基本示例
Oct 11 #jQuery
You might like
php 参数过滤、数据过滤详解
2015/10/26 PHP
PHP实现的随机红包算法示例
2017/08/14 PHP
PHP7内核之Reference详解
2019/03/14 PHP
载入jQuery库的最佳方法详细说明及实现代码
2012/12/28 Javascript
js 利用image对象实现图片的预加载提高访问速度
2013/03/29 Javascript
JavaScript输入邮箱自动提示实例代码
2014/01/13 Javascript
Jquery利用mouseenter和mouseleave实现鼠标经过弹出层且可以点击
2014/02/12 Javascript
JS实现图片放大镜效果的方法
2015/02/27 Javascript
Flash图片上传组件 swfupload使用指南
2015/03/14 Javascript
关于JS中prototype的理解
2015/09/07 Javascript
浅谈angularJS的$watch失效问题的解决方案
2017/08/11 Javascript
深入理解Vue2.x的虚拟DOM diff原理
2017/09/27 Javascript
json前后端数据交互相关代码
2018/09/19 Javascript
jQuery实现ajax的嵌套请求案例分析
2019/02/16 jQuery
17道题让你彻底理解JS中的类型转换
2019/08/08 Javascript
微信小程序实现多图上传
2020/06/19 Javascript
[04:27]DOTA2官方论坛水友赛集锦
2013/09/16 DOTA
[01:04:48]VGJ.S vs TNC Supermajor 败者组 BO3 第一场 6.6
2018/06/07 DOTA
在Django的模板中使用认证数据的方法
2015/07/23 Python
Python读取Json字典写入Excel表格的方法
2018/01/03 Python
Selenium控制浏览器常见操作示例
2018/08/13 Python
详解python中自定义超时异常的几种方法
2019/07/29 Python
Python操作Sqlite正确实现方法解析
2020/02/05 Python
Python爬虫程序架构和运行流程原理解析
2020/03/09 Python
Python sql注入 过滤字符串的非法字符实例
2020/04/03 Python
VSCode配合pipenv搞定虚拟环境的实现方法
2020/05/17 Python
英国优质鞋类专家:Robinson’s Shoes
2017/12/08 全球购物
Origins悦木之源香港官网:雅诗兰黛集团高端植物护肤品牌
2018/03/21 全球购物
俄罗斯披萨、寿司和面食送货到家服务:2 Берега
2019/12/15 全球购物
包装类的功能、种类、常用方法
2012/01/27 面试题
人力资源管理专业毕业生推荐信
2013/11/07 职场文书
安全大检查反思材料
2014/01/31 职场文书
实验教师岗位职责
2014/02/13 职场文书
解除合同协议书范本
2016/03/21 职场文书
导游词之云南丽江-泸沽湖
2019/09/26 职场文书
HTML5简单实现添加背景音乐的几种方法
2021/05/12 HTML / CSS