html demo
<input id="checkboxID" type="checkbox" value="imxgr" />
javascript写法
if(document.getElementById("checkboxID").checked){
alert("checkbox is checked");
}
jquery写法
$("input[type='checkbox']").attr('value')
返回结果:imxgr
$("input[type='checkbox']").is(':checked')
返回结果:选中=true,未选中=false