<div class="tableBody">
<ul ><li ><input type="checkbox" value="hello kit " ></li></ul>
</div>
</div>
$("input[type=‘checkbox‘]").attr(‘value‘)
返回结果:501
$("input[type=‘checkbox‘]").is(‘:checked‘)
返回结果:选中=true,未选中=false
js:
if(document.getElementById("checkboxID").checked){
alert("checkbox is checked");
}
本文出自 “JianBo” 博客,转载请与作者联系!
原文地址:http://jianboli.blog.51cto.com/12075002/1971638