代码如下:
选中复选框为true,没选中为false。
$("input[type='checkbox']").prop("checked");
另一种写法:
checkbox状态是checked时候为true,否则为false
$("#id").is(':checked');