$(".checkboxs_yy").click(function(){
if($(this).attr("checked")==true){
console.log("选中");
}else{
console.log("未选中");
}
});
.checkboxs_yy ist ein Kontrollkästchen, das eine Zeit auslöst, wenn es aktiviert ist, und ein anderes Ereignis auslöst, wenn es nicht aktiviert ist. Wie soll ich es ändern?
$(this).is(":checked")
使用这个$(this).prop('checked')而不用$(this).attr('checked')用来获取动态可变的属性。
attr()在checkbox下不适合用来做是否被选中的判断,可以用.is(":checked")或.prop("checked", true)来做是否被选中的判断。
在jQuery API有相关说明,1.6+的jQuery要用prop,尤其是 checkBox 的 checked 的属性的判断,
同时 .is(":checked") 适合所有版本