jQuery实现table中两列CheckBox只能选中一个的示例
程序员文章站
2022-07-06 20:58:04
//html
选项一 | 选...
//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> //效果图,暂时上传不了动态的,亲测有用的 以上就是小编为大家带来的jquery实现table中两列checkbox只能选中一个的示例的全部内容了,希望大家喜欢哦~ 如果大家想了解更多游戏活动与游戏攻略,请持续关注本站,本站小编将在第一时间为大家带来最好看、最好玩、最新鲜的游戏资讯。更多精彩内容,尽在jb51游戏频道! 上一篇: 跟我学Laravel之路由 推荐阅读
|
---|