搜索
首页web前端js教程jq源码中绑在$,jQuery上面的方法
jq源码中绑在$,jQuery上面的方法 Oct 13, 2017 am 10:20 AM
jquery方法

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("p"); b.reverse() 。 用b 来调reserver() 方法会直接报错的。因为这个时候b是类数组对象。
     * var a = $.makeArray(document.getElementsByTagName("p")); 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上面的方法 的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前By尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )专业的PHP集成开发工具

安全考试浏览器

安全考试浏览器

Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境