如何用jquery实现checkbox点选一个选中其他,取消一个取消其他
2个回答
展开全部
<script language="javascript">
<!--
function checkBox(obj) {
// 只有当选中的时候才会去掉其他已经勾选的checkbox,所以这里只判断选中的情况
if (obj.is(":checked")) {
// 先把所有的checkbox 都设置为不选种
$('input.mybox').prop('checked', false);
// 把自己设置为选中
obj.prop('checked',true);
}
}
//-->
</script>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
<input type="checkbox" class="mybox" onclick="checkBox($(this));"/>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询