我需要有2複選框工作作爲單選按鈕取消選中,但是因爲我想讓取消選中可用使複選框像單選按鈕可用
<script type="text/javascript">
$(document).ready(function() {
$(".gps-garmin").click(function() {
selectedBox = this.id;
$(".gps-garmin").each(function() {
if (this.id == selectedBox)
{
this.checked = true;
}
else
{
this.checked = false;
};
});
});
});
<td><input type="checkbox" id="garmin" value="garmin" class="gps-garmin"></td>
<td><input type="checkbox" id="gps" value="gps" class="gps-garmin"></td>
其實我不能用我的單選按鈕複選框正在工作完全像單選按鈕,我發現此代碼在這裏,但我需要使其不可檢查
'我不能使用單選按鈕,因爲我想取消選中可用'在這種情況下使用3個單選按鈕。 1這些選項中的每一個:'Garmin','GPS'和'None'這使得驗證邏輯也變得更簡單,因爲所有組必須從中選擇,所以不存在用戶錯過選項的可能性 –
我不' t想要一個沒有按鈕,在我的情況下它沒用,我在此之後得到了其他複選框,不需要此功能 – Sydowh