Jquery attr方法返回未定义的复选框

前端之家收集整理的这篇文章主要介绍了Jquery attr方法返回未定义的复选框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于上述复选框
document.getElementById("checkBox1").checked // -> returns true

var byAppr = document.getElementById('checkBox1').value;
$(byAppr).attr('checked') // -> returns undefined

我在firefox 3.6中测试

解决方法

使用以下之一:

> $(‘#checkBox1’)。prop(‘checked’) – 在jQuery 1.6中,通常是要走的路> $(‘#checkBox1’)。is(‘:checked’) – 所有的jQuery版本,但较慢> $(‘#checkBox1’)。attr(‘checked’) – 不在jQuery 1.6 – 但在1.6.1和< = 1.5中,不要使用它 另外,如果您已经有DOM元素直接可用(例如,在事件处理程序中绑定到该字段),请使用此.checked而不是$(this)与上述方法之一!

猜你在找的jQuery相关文章