jquery的attr和prop区别之实例

Posted Mr_伍先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery的attr和prop区别之实例相关的知识,希望对你有一定的参考价值。

  • 对于html元素本身就带有的固有属性,在处理时,使用prop方法。
  • 对于HTML元素我们自己自定义的DOM属性,在处理时,使用attr方法。

 

html文件

<tr>
                        <th></th>
                        <td>
                            <a class="easyui-linkbutton" style="width:60px;" onclick="selectAll()">全选</a>
                            <a class="easyui-linkbutton" style="width:60px;" onclick="unSelectAll()">全不选</a>
                        </td>
                    </tr>

 

 

JS文件

//给相同名称的CheckBox赋属性值

function selectAll(){ $(
‘input[name="groupItem"]‘).val(function(index,val){ $(this).prop(‘checked‘,true);
          //$(this).attr(‘checked‘,true);//错误
return val; }) } function unSelectAll(){ $(‘input[name="groupItem"]‘).val(function(index,val){ $(this).prop(‘checked‘,false);
//$(this).attr(‘checked‘,false);错误
return val; }) }

 

以上是关于jquery的attr和prop区别之实例的主要内容,如果未能解决你的问题,请参考以下文章

jQuery之attr()和prop()的区别

jQuery之attr()和prop()的区别

jquery之prop与attr区别。

jquery中prop()和attr()的区别

JS中attr和prop属性的区别

jQuery中prop() 和 attr()的区别