判断input[type="checkbox"]是否选中,选择则返回true没选择返回false。
if($("#checkbox").is(':checked')){ //选中 }else{ //为选中 }