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)与上述方法之一!