Determine if Checkbox is Checked using jQuery
Possible Duplicate:
Check checkbox checked property using jQuery
What is the correct way of accessing a checkbox to check if it's checked? Is it necessary to first check if that element exists in the DOM and then see if is checked or not?
你可以使用checked选择器和jquery的is方法
if($('#chkbox').is(':checked')){
}
您可以使用以下条件查看复选框是否被选中。
if( $("input:checked").length == 1 ) {
//Checkbox is selected and Do stuff here
}
链接地址: http://www.djcxy.com/p/9516.html
上一篇: jQuery如果复选框没有选中问题
下一篇: 确定复选框是否使用jQuery进行检查