下面小編就為大家帶來一篇jQuery實作table中兩列CheckBox只能選取一個的範例。小編覺得蠻不錯的,現在就分享給jquery原始碼大家,也給大家做個參考。對jquery有興趣的一起跟著小編過來看看吧
//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只能選取一個的範例的全部內容了,希望大家喜歡喔~
相關推薦:
以上是jQuery實作table中兩列CheckBox只能選取一個的範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!