1
我必須列出檢查時選中一個複選框,其他複選框同一行取消選中
<input type="checkbox" value="18" name="yes" id="yes1">
<input type="checkbox" value="13" name="yes" id="yes2">
<input type="checkbox" value="12" name="yes" id="yes3">
等列表複選框
<input type="checkbox" value="14" name="no" id="no2">
<input type="checkbox" value="18" name="no" id="no2">
<input type="checkbox" value="12" name="yo" id="no2">
,但我不知道在工作的時候檢查複選框ID yes1,id no1未檢查
您的意思是給你的 「不」'input's一樣'id'?這是無效的HTML。 – ajp15243 2013-02-18 18:38:16
您可能想看看ASP.Net Ajax ToolKit的[MutuallyExclusiveCheckBox](http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/MutuallyExclusiveCheckBox/MutuallyExclusiveCheckBox.aspx)。在演示中,取消選中它旁邊的複選框。 – Win 2013-02-18 18:41:34