莫回无
只能单选,要用复选框,思路实在不能理解。简单的实现吧:<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>