之前看网上对比两者的文章,更是列出一个表来区分什么标签下使用prop,什么标签下使用attr,原谅我是懒惰的人,最害怕要背的东西,所以只有自己想想办法了。
既然我们想知道他们两的区别,最好就看看他们的源代码,不要被代码长度所吓到,我们只看关键的几句:
attr方法代码(jQuery版本1.8.3)
代码如下 | 复制代码 |
attr: function( elem, name, value, pass ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set attributes on text, comment and attribute nodes if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) { // Fallback to prop when attributes are not supported notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); // All attributes are lowercase if ( value !== undefined ) { if ( value === null ) { } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { } else { } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { } else { ret = elem.getAttribute( name ); // Non-existent attributes return null, we normalize to undefined // don't get/set attributes on text, comment and attribute nodes if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) { // Fallback to prop when attributes are not supported notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); // All attributes are lowercase if ( value !== undefined ) { if ( value === null ) { } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { } else { } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { } else { ret = elem.getAttribute( name ); // Non-existent attributes return null, we normalize to undefined |
prop方法代码(jQuery版本1.8.3)
代码如下 | 复制代码 |
prop: function( elem, name, value ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set properties on text, comment and attribute nodes notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); if ( notxml ) { if ( value !== undefined ) { } else { } else { } else { // don't get/set properties on text, comment and attribute nodes notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); if ( notxml ) { if ( value !== undefined ) { } else { } else { } else { |
attr方法里面,最关键的两行代码,elem.setAttribute( name, value + “” )和ret = elem.getAttribute( name ),很明显的看出来,使用的DOM的API setAttribute和getAttribute方法操作的属性元素节点。
而prop方法里面,最关键的两行代码,return ( elem[ name ] = value )和return elem[ name ],你可以理解成这样document.getElementById(el)[name] = value,这是转化成JS对象的一个属性。
既然明白了原理是这样,我们来看看一个例子:
代码如下 | 复制代码 |
<input type="checkbox" id="test" abc="111" /><input type="checkbox" id="test" abc="111" /> $(function(){ el = $("#test"); console.log(el.attr("style")); //undefined console.log(el.attr("style")); //undefined |
输出undefined,因为attr是获取的这个对象属性节点的值,很显然此时没有这个属性节点,自然输出undefined
2.el.prop(“style”)输出CSSStyleDeclaration对象,对于一个DOM对象,是具有原生的style对象属性的,所以输出了style对象
3.至于document.getElementById(“test”).style和上面那条一样
我们接着看:
代码如下 | 复制代码 |
el.attr("abc","111") console.log(el.attr("abc")); //111 console.log(el.prop("abc")); //undefinedel.attr("abc","111") console.log(el.attr("abc")); //111 console.log(el.prop("abc")); //undefined首先用attr方法给这个对象添加abc节点属性,值为111,可以看到html的结构也变了 1.el.attr(“abc”)输出结果为111,再正常不过了 |
我们再接着来:
代码如下 | 复制代码 |
el.prop("abc", "222"); console.log(el.attr("abc")); //111 console.log(el.prop("abc")); //222el.prop("abc", "222"); console.log(el.attr("abc")); //111 console.log(el.prop("abc")); //222 |
我们再用prop方法给这个对象设置了abc属性,值为222,可以看到html的结构是没有变化的。输出的结果就不解释了。
上面已经把原理讲清楚了,什么时候用什么就可以自己把握了。
提一下,在遇到要获取或设置checked,selected,readonly和disabled等属性时,用prop方法显然更好,比如像下面这样:
代码如下 | 复制代码 |
<input type="checkbox" id="test" checked="checked" /><input type="checkbox" id="test" checked="checked" /> console.log(el.attr("checked")); //checked console.log(el.prop("checked")); //true console.log(el.attr("disabled")); //undefined console.log(el.prop("disabled")); //falseconsole.log(el.attr("checked")); //checked console.log(el.prop("checked")); //true console.log(el.attr("disabled")); //undefined console.log(el.prop("disabled")); //false |
显然,布尔值比字符串值让接下来的处理更合理。
PS一下,如果你有JS性能洁癖的话,显然prop的性能更高,因为attr需要访问DOM属性节点,访问DOM是最耗时的。这种情况适用于多选项全选和反选的情况。