猿问

jquery 怎么设置复选框只能单选

已经试过很多种方法就是不生效。求解。

https://img2.mukewang.com/5c8b4d1a000172df06300173.jpg

烙印99
浏览 1638回答 4
4回答

德玛西亚99

为何不直接用单选按钮radio

神不在的星期二

这个把我怼懵逼了,你干嘛不用单选按钮,要是样式不好,你就改改

莫回无

只能单选,要用复选框,思路实在不能理解。简单的实现吧:<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>&nbsp; &nbsp; $("input[name='testCheckBox']").on('click', function(){&nbsp; &nbsp; &nbsp; &nbsp; // 取消全部checkbox的选中&nbsp; &nbsp; &nbsp; &nbsp; $("input[name='testCheckBox']").prop("checked", false);&nbsp; &nbsp; &nbsp; &nbsp; // 设置选中当前&nbsp; &nbsp; &nbsp; &nbsp; $(this).prop("checked", true);&nbsp; &nbsp; });</script>
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答