我有一個JavaScript代碼,我爲我的單選按鈕。我的頁面有三行,每行有三個不同的單選按鈕。我想拿出是當用戶在1號線點擊一個單選按鈕,喜歡控制線2和3單選按鈕的方式:自動啓用單選按鈕
- 當我選擇無線電BTN#1,將自動禁用第2行和第3行的廣播btn#1。現在,如果我要改變第1行的選擇,比如選擇這個時間廣播btn#2,它應該啓用第2行和第3行的廣播btn#1。什麼是正確的方法做它?
$('.Session').click(function(){
if(this.value == 'One1' && this.checked){
console.log($('input[value=One2], input[value=One3'));
$('input[value=One2], input[value=One3]').prop('disabled', true);
}
else if(this.value == 'One2' && this.checked){
$('input[value=One1], input[value=One3]').prop('disabled', true);
}
else if(this.value == 'One3' && this.checked){
$('input[value=One1], input[value=One2]').prop('disabled', true);
}
else if(this.value == 'Bk1' && this.checked){
$('input[value=Bk2], input[value=Bk3]').prop('disabled', true);
}
else if(this.value == 'Bk2' && this.checked){
$('input[value=Bk1], input[value=Bk3]').prop('disabled', true);
}
else if(this.value == 'Bk3' && this.checked){
$('input[value=Bk1], input[value=Bk2]').prop('disabled', true);
}
else if(this.value == 'Test1' && this.checked){
$('input[value=Test2], input[value=Test3]').prop('disabled', true);
}
else if(this.value == 'Test2' && this.checked){
$('input[value=Test1], input[value=Test3]').prop('disabled', true);
}
else if(this.value == 'Test3' && this.checked){
$('input[value=Test1], input[value=Test2]').prop('disabled', true);
}
else{
$('.Session').not(this).prop('checked', false).prop('disabled', false);
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<label> Line 1 </label>
<div class="input-group">
<input name="session1" class="Session" type="radio" value="Bk1">1
<input name="session1" class="Session" type="radio" value="One1">2
<input name="session1" class="Session" type="radio" value="Test1">3
</div>
<label> Line 2 </label>
<div class="input-group">
<input name="session2" class="Session" type="radio" value="Bk2">1
<input name="session2" class="Session" type="radio" value="One2">2
<input name="session2" class="Session" type="radio" value="Test2">3
</div>
<label> Line 3 </label>
<div class="input-group">
<input name="session3" class="Session" type="radio" value="Bk3">1
<input name="session3" class="Session" type="radio" value="One3">2
<input name="session3" class="Session" type="radio" value="Test3">3
</div>
BTN#1,會自動禁用無線電BTN#1在2號線和3現在,如果我去改變選擇在1號線一樣選擇這個時間電波BTN #2,它應該在第2行和第3行啓用無線電btn#1。 – Gatzmar
這不是發生在這裏嗎?這個解決方案有什麼問題? –
先生,我試過你之前發佈的代碼,但它應該是這樣的,當我選擇收音機btn#1時,它會自動禁用第2和第3行收音機btn#1。當我選擇收音機btn 2或3第2行,第2行和第3行中的廣播btn#1應保持禁用狀態。但在您的代碼中,第2行和第3行中的收音機btn#1將再次啓用。 – Gatzmar