jQuery07源码 (3803 , 4299) attr() prop() val() addClass()等 : 对元素属性的操作

var nodeHook, boolHook,rclass = /[\t\r\n\f]/g,rreturn = /\r/g,rfocusable = /^(?:input|select|textarea|button)$/i;jQuery.fn.extend({attr: function( name, value ) {
//遍历this
//arguments.length > 1,jQuery.attr(this[i],name,value),返回this
//arguments.length <= 1,jQuery.attr(this[i],name,value),返回thisreturn jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );},removeAttr: function( name ) {return this.each(function() {jQuery.removeAttr( this, name );});},prop: function( name, value ) {return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );},removeProp: function( name ) {return this.each(function() {delete this[ jQuery.propFix[ name ] || name ];});},//$('.div1').addClass('box2 box3');addClass: function( value ) {var classes, elem, cur, clazz, j,i = 0,len = this.length,proceed = typeof value === "string" && value;//是字符串返回字符串,不是返回flase/*$('div').addClass( function(index){alert(index);return 'box'+index;});*/if ( jQuery.isFunction( value ) ) {console.log(this);//这里的this是jQuery对象,Object { 0: <div#div1.box>, 1: <div#div2.box>, 2: <div#div3.box>, length: 3},通过return ( context || rootjQuery ).find('.div1')原生方法获得,里面每一个是节点对象不是jQuery对象return this.each(function( j ) {console.log(this);//这里不是jQuery对象是dom节点对象,<div id='div1'></div>,<div id='div2'></div>,<div id='div3'></div>console.log(jQuery( this ));//jQuery( this )是jQuery对象,Object { 0: <div#div1.box>, context: <div#div1.box>, length: 1 },Object { 0: <div#div2.box>, context: <div#div2.box>, length: 1 },Object { 0: <div#div3.box>, context: <div#div3.box>, length: 1 }/*jQuery( this )走的是if ( selector.nodeType ) {//节点都有nodeType属性this.context = this[0] = selector;this.length = 1;return this;*/jQuery( this ).addClass( value.call( this, j, this.className ) );});}if ( proceed ) {// 把字符串正则分割成数组classes = ( value || "" ).match( core_rnotwhite ) || [];for ( ; i < len; i++ ) {elem = this[ i ];//不是元素节点返回false,elem.className元素有没有class属性,有就合并(重复不合并),cur是之前的classcur = elem.nodeType === 1 && ( elem.className ?//非空格转换成空格( " " + elem.className + " " ).replace( rclass, " " ) :" ");if ( cur ) {j = 0;while ( (clazz = classes[j++]) ) {if ( cur.indexOf( " " + clazz + " " ) < 0 ) {cur += clazz + " ";}}//前后去空格elem.className = jQuery.trim( cur );}}}return this;},removeClass: function( value ) {var classes, elem, cur, clazz, j,i = 0,len = this.length,//先执行&&再||,proceed为true参数长度是0删除所有或者参数是字符串,为false传的不是字符串proceed = arguments.length === 0 || typeof value === "string" && value;if ( jQuery.isFunction( value ) ) {return this.each(function( j ) {jQuery( this ).removeClass( value.call( this, j, this.className ) );});}if ( proceed ) {classes = ( value || "" ).match( core_rnotwhite ) || [];for ( ; i < len; i++ ) {elem = this[ i ];// This expression is here for better compressibility (see addClass)cur = elem.nodeType === 1 && ( elem.className ?( " " + elem.className + " " ).replace( rclass, " " ) :"");if ( cur ) {j = 0;while ( (clazz = classes[j++]) ) {// Remove *all* instanceswhile ( cur.indexOf( " " + clazz + " " ) >= 0 ) {cur = cur.replace( " " + clazz + " ", " " );}}elem.className = value ? jQuery.trim( cur ) : "";}}}return this;},toggleClass: function( value, stateVal ) {var type = typeof value;//$('#div1').toggleClass('box2 box3',true);//有没有都是add//$('#div1').toggleClass('box2 box3',false);//有没有都是删除if ( typeof stateVal === "boolean" && type === "string" ) {//真就添加,假就删除return stateVal ? this.addClass( value ) : this.removeClass( value );}if ( jQuery.isFunction( value ) ) {return this.each(function( i ) {jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );});}//$('#div1').toggleClass('box2 box3')return this.each(function() {if ( type === "string" ) {// toggle individual class namesvar className,i = 0,self = jQuery( this ),//转成jQuery对象,hasClass是jQuery对象的方法。//空格分割成数组classNames = value.match( core_rnotwhite ) || [];while ( (className = classNames[ i++ ]) ) {// check each className given, space separated listif ( self.hasClass( className ) ) {self.removeClass( className );} else {self.addClass( className );}}// Toggle whole class name//$('#div1').toggleClass(false);} else if ( type === core_strundefined || type === "boolean" ) {if ( this.className ) {// store className if setdata_priv.set( this, "__className__", this.className );}// If the element has a class name or if we're passed "false",// then remove the whole classname (if there was one, the above saved it).// Otherwise bring back whatever was previously saved (if anything),// falling back to the empty string if nothing was stored.this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || "";}});},hasClass: function( selector ) {var className = " " + selector + " ",i = 0,l = this.length;for ( ; i < l; i++ ) {if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {return true;}}return false;},val: function( value ) {var hooks, ret, isFunction,elem = this[0];//$('#input1').val()if ( !arguments.length ) {//获取if ( elem ) {//只获取第一个元素//hooks兼容处理,jQuery.valHooks[ elem.type ]在valHooks 这个json中找不到就找jQuery.valHooks[ elem.nodeName.toLowerCase() ]hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
/*
valHooks: {
hooks = option: {   //elem.type || elem.nodeName.toLowerCase()get: function( elem ) {}},
hooks = select: {get: function( elem ) {},set: function( elem, value ) {}}下面的:
hooks = radio: { set: function( elem ) {}get: function( elem, value ) {}},
hooks = checkbox: {set: function( elem ) {},get: function( elem, value ) {}}        
}
*/if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {return ret;}//不再hooks里面ret = elem.value;return typeof ret === "string" ?// handle most common string casesret.replace(rreturn, "") :// handle cases where value is null/undef or numberret == null ? "" : ret;}return;}//设置isFunction = jQuery.isFunction( value );return this.each(function( i ) {var val;if ( this.nodeType !== 1 ) {return;}if ( isFunction ) {val = value.call( this, i, jQuery( this ).val() );} else {val = value;}// Treat null/undefined as ""; convert numbers to stringif ( val == null ) {//$('#input1').val(null);val = "";} else if ( typeof val === "number" ) {//$('#input1').val(123123);val += "";//转成字符串} else if ( jQuery.isArray( val ) ) {//$('#input2').val(['hello']);val = jQuery.map(val, function ( value ) {return value == null ? "" : value + "";});}hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];// If set returns undefined, fall back to normal settingif ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {this.value = val;}});}
});jQuery.extend({//静态属性只能通过jQuery静态方式调valHooks: {//option-get,select-get.select-set  兼容性处理
        option: {get: function( elem ) {// attributes.value is undefined in Blackberry 4.7 but// uses .value. See #6932var val = elem.attributes.value;//val不存在输出elem.value,val存在specified为false走elem.textreturn !val || val.specified ? elem.value : elem.text;}},select: {//$('select').val()get: function( elem ) {var value, option,options = elem.options,//下拉选项index = elem.selectedIndex,//当前索引值//select只选了一个或者没有选,one为true,就是单选one = elem.type === "select-one" || index < 0,//one为true时单选values是空,one是false时多选values是一个数组存储所有的选择的多个values = one ? null : [],//单选时max是当前索引加1,多选时是下拉选项的长度max = one ? index + 1 : options.length,//
                    i = index < 0 ?max /*index < 0没有选择时one=true,i=max=0*/ :one ? index/*index >= 0有选择时,select-one单选one=true,i=index,max=index+1,*/ :0   /*index >= 0有选择时,不是select-one多选one=false,i=0,max=options.length*/;// 没有选择不进入循环,不获取select的val()//有选择单选,i=index,只获取index的val()//有选择好多选,全部获取for ( ; i < max; i++ ) {option = options[ i ];//js对象// IE6-9 doesn't update selected after form reset (#2551)if ( ( option.selected || i === index ) &&// Don't return options that are disabled or in a disabled optgroup( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {// Get the specific value for the optionvalue = jQuery( option ).val();//转成jQuery对象// We don't need an array for one selectsif ( one ) {return value;}// Multi-Selects return an array
                        values.push( value );}}return values;},//    $('#select').val(111);//111被选中了set: function( elem, value ) {var optionSet, option,options = elem.options,//所有的下拉选项,js对象values = jQuery.makeArray( value ),//转成数组i = options.length;while ( i-- ) {//遍历option = options[ i ];if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) {//在数组里面就把她设为选中optionSet = true;}}// force browsers to behave consistently when non-matching value is setif ( !optionSet ) {//都没有elem.selectedIndex = -1;}return values;}}},attr: function( elem, name, value ) {var hooks, ret,nType = elem.nodeType;// 节点不存在,或者文本、属性、注释节点if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {return;}// core_strundefined = typeof undefined,if ( typeof elem.getAttribute === core_strundefined ) {//$(document).attr('title','hello'); 走这里通过.设置return jQuery.prop( elem, name, value );}// 1是元素节点,if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {name = name.toLowerCase();//只有type才做兼容性处理hooks = jQuery.attrHooks[ name ] ||//$('input').attr('checked',true);//没问题,做兼容了( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );}if ( value !== undefined ) {//设置
//$('#div1').attr('miaov',null); 调用removeif ( value === null ) {jQuery.removeAttr( elem, name );
//hooks中,set方法存在,就调用set方法并且返回值存在,就返回返回值} else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {return ret;//有兼容性执行兼容操作,返回值
} else {//没有兼容性操作设置值elem.setAttribute( name, value + "" );return value;}
//hooks中,get方法存在,就调用get方法并且返回值存在,就返回返回值} else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {//获取,有兼容性返回值return ret;} else {//获取没有兼容性时ret = jQuery.find.attr( elem, name );// Non-existent attributes return null, we normalize to undefinedreturn ret == null ?undefined :ret;}},removeAttr: function( elem, value ) {var name, propName,i = 0,//$('#div1').removeAttr('maio href id');attrNames = value && value.match( core_rnotwhite );//core_rnotwhite = /\S+/g, 非空格,返回数组if ( attrNames && elem.nodeType === 1 ) {while ( (name = attrNames[i++]) ) {/*propFix: {"for": "htmlFor","class": "className"},*///  $('#div1').removeAttr('class');propName = jQuery.propFix[ name ] || name;// Boolean attributes get special treatment (#10870)if ( jQuery.expr.match.bool.test( name ) ) {// $('#div1').removeAttr('checked');elem[ propName ] = false;}elem.removeAttribute( name );//调用原生
            }}},
//hooks = jQuery.attrHooks[ name ]
    attrHooks: {type: {//只有name = 'type',才会有有兼容性判断。set: function( elem, value ) {//只有set说明兼容只是针对设置没有获取if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {//单选值的兼容// Setting the type on a radio button after the value resets the value in IE6-9// Reset value to default in case type is set after value during creation//当设置type = 'radio'时IE会有兼容性问题,所以要先设置类型才设置值var val = elem.value;elem.setAttribute( "type", value );if ( val ) {elem.value = val;}return value;}}}},propFix: {"for": "htmlFor","class": "className"},prop: function( elem, name, value ) {var ret, hooks, notxml,nType = elem.nodeType;// don't get/set properties on text, comment and attribute nodesif ( !elem || nType === 3 || nType === 8 || nType === 2 ) {return;}notxml = nType !== 1 || !jQuery.isXMLDoc( elem );if ( notxml ) {// Fix name and attach hooksname = jQuery.propFix[ name ] || name;hooks = jQuery.propHooks[ name ];//兼容性处理
        }if ( value !== undefined ) {//设置值return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?ret :( elem[ name ] = value );//prop使用的是.操作
} else {//获取值return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?ret :elem[ name ];}},propHooks: {tabIndex: {//光标切换顺序,只对tabIndex属性做兼容get: function( elem ) {//只对get方法做兼容return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ?elem.tabIndex :-1;}}}
});// Hooks for boolean attributes
boolHook = {set: function( elem, value, name ) {if ( value === false ) {// Remove boolean attributes when set to false
            jQuery.removeAttr( elem, name );} else {elem.setAttribute( name, name );}return name;}
};
jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr;jQuery.expr.attrHandle[ name ] = function( elem, name, isXML ) {var fn = jQuery.expr.attrHandle[ name ],ret = isXML ?undefined :/* jshint eqeqeq: false */// Temporarily disable this handler to check existence(jQuery.expr.attrHandle[ name ] = undefined) !=getter( elem, name, isXML ) ?name.toLowerCase() :null;// Restore handlerjQuery.expr.attrHandle[ name ] = fn;return ret;};
});// Support: IE9+
// Selectedness for an option in an optgroup can be inaccurate
if ( !jQuery.support.optSelected ) {jQuery.propHooks.selected = {get: function( elem ) {var parent = elem.parentNode;if ( parent && parent.parentNode ) {parent.parentNode.selectedIndex;}return null;}};
}jQuery.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"
], function() {//value = callback.call( obj[ i ], i, obj[ i ] );jQuery.propFix[ this.toLowerCase() ] = this;
});/*
valHooks: {
hooks = radio: { set: function( elem ) {}get: function( elem, value ) {}},
hooks = checkbox: {set: function( elem ) {},get: function( elem, value ) {}}
}
*/
jQuery.each([ "radio", "checkbox" ], function() {jQuery.valHooks[ this ] = {//$('#radio').val(['hello']);set: function( elem, value ) {if ( jQuery.isArray( value ) ) {return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );//设置选中状态
            }}};if ( !jQuery.support.checkOn ) {//有的话做处理,没有不做处理    //获取单选框和复选框的value值时绝大多数浏览器返回的都是on,有些是空的,jQuery.valHooks[ this ].get = function( elem ) {// Support: Webkit// "" is returned instead of "on" if a value isn't specifiedreturn elem.getAttribute("value") === null ? "on" : elem.value;};}
});

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/290120.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Eclipse提示The **** cannot be resolved. It is indirectly referenced from required .cl

1、问题 代码正常&#xff0c;提示这个错误The **** cannot be resolved. It is indirectly referenced from required .cl 2、解决办法 把提示错误地方的类改成在这个****包名下面就行

ora22813操作数值超出系统的限制_最新:华为“鸿蒙”操作系统终于面世!一旦遭到限制,将随时启用...

受美国的要求&#xff0c;自5月开始&#xff0c;安卓暂停了与华为的部分合作&#xff0c;而这直接影响到了华为对安卓系统的正常更新。迫于无奈之下&#xff0c;华为对外表示&#xff0c;已经准备了备用系统&#xff0c;但只在必要的情况下使用&#xff0c;而这一系统就是广为人…

解决点击MDI父窗体下拉菜单,子窗体重复出现的问题

private void 培训信息TToolStripMenuItem_Click(object sender, EventArgs e) { foreach (Form form in Application.OpenForms) { if (form.Name "Zhuce_Train")//子窗体的Name属性 { …

cidaemon.exe进程cpu占用率高及关闭cidaemon.exe进程方法

问题描写叙述: 这段时间机器总是出现一个奇怪的问题:cidaemon.exe进程占用CUP率98%以上,大大影响了电脑的正常使用.资源管理器中出现多个cidaemon.exe进程,强制结束占用cpu率最高的一个,两分钟左右后,相同的问题还是出现了。 问题关联: cidaemon.exe相关知识&#xff1a;cidaem…

Blazor University (2)布局 — 创建 Blazor 布局

原文链接&#xff1a;https://blazor-university.com/layouts/布局Blazor 布局类似于 ASP Webforms 母版页的概念&#xff0c;与 ASP MVC 中的 Razor 布局相同。几乎网络上的每个网站都有一个模板用于整个网站&#xff08;页面顶部的品牌&#xff0c;底部的版权&#xff09;或网…

iOS开发UI篇—使用嵌套模型完成的一个简单汽车图标展示程序

iOS开发UI篇—使用嵌套模型完成的一个简单汽车图标展示程序 一、plist文件和项目结构图 说明&#xff1a;这是一个嵌套模型的示例 二、代码示例&#xff1a; YYcarsgroup.h文件代码&#xff1a; 1 //2 // YYcarsgroup.h3 // 07-汽车展示&#xff08;高级&#xff09;4 //5 //…

递归和非递归实现规律函数

1、问题 A(n) n / (2 * n 1)B1 2 A1;B2 2 A1 * (2 A2);B3 2 A1 * (2 A2 * (2 A3));....以此类推&#xff0c;求B(n)2、代码实现 #include <stdio.h>/** A(n) n / (2 * n 1) B1 2 A1; B2 2 A1 * (2 A2); B3 2 A1 * (2 A2 * (2 A3)); ....以此类推&…

程序员永远的痛之字符编码的奥秘

字符编码相信是每个程序员的噩梦&#xff0c;只要是有中文的地方&#xff0c;总是会遇到各种编码的问题&#xff0c;并且这种问题还非常难缠&#xff0c;尤其在linux上&#xff0c;因为上面很多软件都是针对 英语国家开发的&#xff0c;是不会考虑其他语种编码问题。在遇到编码…

awb数据怎么计算_白平衡自己主动(AWB)算法---2,颜色计算

本文说明了白平衡算法估计当前场景的色温过程.色温计算的原理并不复杂,但要做到,还是一道&#xff0c;认真做好每一步,这需要大量的测试,和算法一直完好.关于该过程首先简要:1, 取的图像数据,并划分MxN块,如果是25x25,并统计每一块的基本信息(,白色像素的数量及R/G/B通道的分量…

svn强制要求提交注释

2019独角兽企业重金招聘Python工程师标准>>> 看了N多资料&#xff0c;不知道为什么我总是不成功。现在终于测试成功了&#xff0c;下面是实际操作过程~~ 使用bitnami一键安装了subversion&#xff0c;在使用中&#xff0c;希望开发人员提交时必须输入日志内容&#…

Xamarin效果第五篇之ScrollView动态滚动效果

前面基于Xamarin做了一点效果;这不过年从老家回来一直成沉迷工作无法自拔,没时间来更新文章了;今天赶紧抽点时间再来更新一下效果;直接看看最终实现的效果:前台RadioButton的事件绑定选中状态绑定:后台对ScrollView的滚动处理:ScrollView的滚动对当前选中状态的修改&#xff1a…

How to change the text color in the terminal

You can open the file ~/.bashrc and then choose the force_color_promptyes otherwise, you can change the color in PSI. 注意&#xff1a;使用方法&#xff1a;# PS1自定义内容注意两边的单引号示例&#xff1a; PS1(\u\H \d \t)\$-------------------------------------…

9 个使用前必须再三小心的 Linux 命令

Linux shell/terminal 命令非常强大即使一个简单的命令就可能导致文件夹、文件或者路径文件夹等被删除。 在一些情况下Linux 甚至不会询问你而直接执行命令导致你丢失各种数据信息。 一般来说在 Web 上推荐新的 Linux 用户执行这些命令当然也有人哪些写过这代码的人不这么想因为…

C/C++之内存对齐

1、什么是内存对齐 计算机系统对基本类型数据在内存中放的位置做了限制,它们会要求这些数的首地址是一个数(一般为4和8)的整数倍,我们看下结构体的大小 #include <stdio.h> struct A {char a;int b; };int main() {printf("size of struct A is %d\n", sizeo…

生存下去

这个世界就是这么的无情&#xff0c;你改不了现势&#xff0c;现势就会改变你&#xff0c;毫无疑问。加油吧&#xff0c;只为一个目的&#xff1a;生存下去。

池化层在全连接层之间吗,了解最大池化层之后的全连接层的尺寸

In the diagram (architecture) below, how was the (fully-connected) dense layer of 4096 units derived from last max-pool layer (on the right) of dimensions 256x13x13? Instead of 4096, shouldnt it be 256*13*1343264 ?解决方案If Im correct, youre asking why …

Blazor University (3)组件 — 创建组件

原文链接&#xff1a;https://blazor-university.com/components组件所有呈现的 Blazor 视图都来自 ComponentBase 类&#xff0c;这包括布局、页面和组件。Blazor 页面本质上是一个带有 page 指令的组件&#xff0c;该指令指定浏览器必须导航到的 URL 才能呈现它。事实上&…

View controller-based status bar

info.plist文件中&#xff0c;View controller-based status bar appearance项设为YES&#xff0c;则View controller对status bar的设置优先级高于application的设置。为NO则以application的设置为准&#xff0c;view controller的prefersStatusBarHidden方法无效&#xff0c;…

C和指针之IO总结

1、流 io操作就是简单的从程序移进或移出字节的事情,这种字节流便称为流 2、流的两种类型,文本流和二进制流 1)、文本流:文本流是指在流中流动的数据是以字符形式出现 2)、二进制流:二进制流是指流动的是二进制数字序列,若流只有字符,则用一个字节的二进制ASCII码表示…

Codeigniter中创建LeanCloud云函数实现微信支付

2019独角兽企业重金招聘Python工程师标准>>> 经过摸索&#xff0c;与官方提供的slim无异&#xff0c;同样使用__invoke魔法函数即可&#xff0c;步骤如下&#xff1a; 1.config.php打开hook&#xff0c;即设置$config[enable_hooks] TRUE; 详情文档参见&#xff1a…