jQuery中prop和attr的用法区别
1.对于HTML元素本身就带有的固有属性,在处理时,使用prop方法。
2.对于HTML元素我们自己自定义的DOM属性,在处理时,使用attr方法。
像checkbox,radio和select这样的元素,选中属性对应“checked”和“selected”,这些也属于固有属性,因此需要使用prop方法去操作才能获得正确的结果。
例如:
$(':input[name="checkbox"]').each(function (i,v) {
if(i == 0){
$(this).prop('checked','false');
//$(this).attr('checked','false'); //无效
// $(this).removeAttr('checked'); //无效
}else{
$(this).prop('checked','true');
}
})