4 回答
莫回无
TA贡献1865条经验 获得超7个赞
只能单选,要用复选框,思路实在不能理解。
简单的实现吧:
<input type="checkbox" name="testCheckBox">
<input type="checkbox" name="testCheckBox">
<input type="checkbox" name="testCheckBox">
<input type="checkbox" name="testCheckBox">
<input type="checkbox" name="testCheckBox">
<script src="jquery.js"></script>
<script>
$("input[name='testCheckBox']").on('click', function(){
// 取消全部checkbox的选中
$("input[name='testCheckBox']").prop("checked", false);
// 设置选中当前
$(this).prop("checked", true);
});
</script>
添加回答
举报
0/150
提交
取消