时间:2021-07-01 10:21:17 帮助过:2人阅读
//html
<table id="unit"> <tr> <th>选项一</th> <th>选项二</th> <th>姓名</th> </tr> <tr> <td><input type="checkbox" /></td> <td><input type="checkbox" /></td> <td>小红</td> </tr> <tr> <td><input type="checkbox" /></td> <td><input type="checkbox" /></td> <td>小明</td> </tr> </table>
//jQuery
<script type="text/javascript"> $(function(){ $("#unit tr").click(function () { $(this).siblings().find("input[type='checkbox']").removeAttr("checked"); }); }) </script>
//效果图,暂时上传不了动态的,亲测有用的
相关推荐:
HTML的checkbox和radio怎样美化样式
input checkbox 如何可以扩大点击范围
jQuery实现checkbox方法
以上就是table中两列CheckBox只能选中一个的jQuery代码的详细内容,更多请关注Gxl网其它相关文章!