Methods tied to $,jQuery in jq source code
1. When we use the $ symbol to call the method directly. How is it encapsulated inside jQuery? Are you curious?
// 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 } );
The above is the detailed content of Methods tied to $,jQuery in jq source code. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

WeChat is one of the mainstream chat tools. We can meet new friends, contact old friends and maintain the friendship between friends through WeChat. Just as there is no such thing as a banquet that never ends, disagreements will inevitably occur when people get along with each other. When a person extremely affects your mood, or you find that your views are inconsistent when you get along, and you can no longer communicate, then we may need to delete WeChat friends. How to delete WeChat friends? The first step to delete WeChat friends: tap [Address Book] on the main WeChat interface; the second step: click on the friend you want to delete and enter [Details]; the third step: click [...] in the upper right corner; Step 4: Click [Delete] below; Step 5: After understanding the page prompts, click [Delete Contact]; Warm

Tomato Novel is a very popular novel reading software. We often have new novels and comics to read in Tomato Novel. Every novel and comic is very interesting. Many friends also want to write novels. Earn pocket money and edit the content of the novel you want to write into text. So how do we write the novel in it? My friends don’t know, so let’s go to this site together. Let’s take some time to look at an introduction to how to write a novel. Share the Tomato novel tutorial on how to write a novel. 1. First open the Tomato free novel app on your mobile phone and click on Personal Center - Writer Center. 2. Jump to the Tomato Writer Assistant page - click on Create a new book at the end of the novel.

Colorful motherboards enjoy high popularity and market share in the Chinese domestic market, but some users of Colorful motherboards still don’t know how to enter the bios for settings? In response to this situation, the editor has specially brought you two methods to enter the colorful motherboard bios. Come and try it! Method 1: Use the U disk startup shortcut key to directly enter the U disk installation system. The shortcut key for the Colorful motherboard to start the U disk with one click is ESC or F11. First, use Black Shark Installation Master to create a Black Shark U disk boot disk, and then turn on the computer. When you see the startup screen, continuously press the ESC or F11 key on the keyboard to enter a window for sequential selection of startup items. Move the cursor to the place where "USB" is displayed, and then

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual

A summary of how to obtain Win11 administrator rights. In the Windows 11 operating system, administrator rights are one of the very important permissions that allow users to perform various operations on the system. Sometimes, we may need to obtain administrator rights to complete some operations, such as installing software, modifying system settings, etc. The following summarizes some methods for obtaining Win11 administrator rights, I hope it can help you. 1. Use shortcut keys. In Windows 11 system, you can quickly open the command prompt through shortcut keys.

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

Detailed explanation of Oracle version query method Oracle is one of the most popular relational database management systems in the world. It provides rich functions and powerful performance and is widely used in enterprises. In the process of database management and development, it is very important to understand the version of the Oracle database. This article will introduce in detail how to query the version information of the Oracle database and give specific code examples. Query the database version of the SQL statement in the Oracle database by executing a simple SQL statement
