web-dev-qa-db-ja.com

jqueryを使用してラジオボタンの選択値を設定する方法

javascriptでラジオボタンの選択値を設定する方法:

HTMLコード:

<input type="radio" name="RBLExperienceApplicable" class="radio" value="1" > 
<input type="radio" name="RBLExperienceApplicable" class="radio" value="0" >


<input type="radio" name="RBLExperienceApplicable2" class="radio" value="1" > 
<input type="radio" name="RBLExperienceApplicable2" class="radio" value="0" >

ASPXコード

     <asp:RadioButtonList ID="RBLExperienceApplicable" runat="server" class="radio"    RepeatDirection="Horizontal" EnableViewState="false">
            <asp:ListItem Value="1" Text="Yes &nbsp;&nbsp;"></asp:ListItem> 
                <asp:ListItem Value="0" Text="No"></asp:ListItem>
        </asp:RadioButtonList>

     <asp:RadioButtonList ID="RBLExperienceApplicable2" runat="server" class="radio"  RepeatDirection="Horizontal" EnableViewState="false">
            <asp:ListItem Value="1" Text="Yes &nbsp;&nbsp;"></asp:ListItem> 
                <asp:ListItem Value="0" Text="No"></asp:ListItem>
        </asp:RadioButtonList>

// dbからのコードフェッチ
// db値に基づいて、スクリプトブロックが実行されます

 <script type="text/javascript">
        RadionButtonSelectedValueSet('1');
 </script>

スクリプトブロック:

function RadionButtonSelectedValueSet(SelectdValue) {
    $('#RBLExperienceApplicable').val(SelectdValue);
        //$("input[name='RBLExperienceApplicable']:checked").val(SelectdValue);
}
40
user2636638

試して

function RadionButtonSelectedValueSet(name, SelectdValue) {
    $('input[name="' + name+ '"][value="' + SelectdValue + '"]').prop('checked', true);
}

また、dom readyでメソッドを呼び出します

<script type="text/javascript">
jQuery(function(){
    RadionButtonSelectedValueSet('RBLExperienceApplicable', '1');
})
</script>
77
Arun P Johny

よりエレガントに行うことができます。

function RadionButtonSelectedValueSet(name, SelectedValue) {
    $('input[name="' + name+ '"]').val([SelectedValue]);
}
30
Shuhei Kagawa

これも試すことができます

function SetRadiobuttonValue(selectedValue)
{
  $(':radio[value="' + selectedValue + '"]').attr('checked', 'checked');
}
5
Avinash Jha

以下のスクリプトは、すべてのブラウザーで正常に機能します。

function RadionButtonSelectedValueSet(name, SelectdValue) {
     $('input[name="' + name + '"][value="' + SelectdValue + '"]').attr('checked',true);
}
3
user2636638

選択が変更された場合は、最初に他のチェックをクリアしてください。アラ...

$('input[name="' + value.id + '"]').attr('checked', false);
$('input[name="' + value.id + '"][value="' + thing[value.prop] + '"]').attr('checked',  true);
               
1
MrSethT
$('input[name="RBLExperienceApplicable"]').prop('checked',true);

ありがとう、相棒...

1
Nandakumar

これは私のために働いた唯一の構文です

$('input[name="assReq"][value="' + obj["AssociationReq"] + '"]').prop('checked', 'checked');
0
pat capozzi
  <input type="radio" name="RBLExperienceApplicable" class="radio" value="1" checked > 
 //       For Example it is checked
 <input type="radio" name="RBLExperienceApplicable" class="radio" value="0" >


<input type="radio" name="RBLExperienceApplicable2" class="radio" value="1" > 
<input type="radio" name="RBLExperienceApplicable2" class="radio" value="0" >


      $( "input[type='radio']" ).change(function() //on change radio buttons
   {


    alert('Test');
   if($('input[name=RBLExperienceApplicable]:checked').val() != '') //Testing value
 {

$('input[name=RBLExperienceApplicable]:checked').val('Your value Without Quotes');

}
    });

http://jsfiddle.net/6d6FJ/1/デモ

enter image description here

0
Nandakumar

複数のドロップダウン用

$('[id^=RBLExperienceApplicable][value='+ SelectedVAlue +']').attr("checked","checked");

ここでRBLExperienceApplicableは、ラジオボタングループの入力タグIDの一致部分です。 [id^=RBLExperienceApplicable]は、IDがRBLExperienceApplicableで始まるすべてのラジオボタンに一致します

0
th1rdey3
  <asp:RadioButtonList ID="rblRequestType">
        <asp:ListItem Selected="True" Value="value1">Value1</asp:ListItem>
        <asp:ListItem Value="Value2">Value2</asp:ListItem>
  </asp:RadioButtonList>

このようにチェックを設定できます。

var radio0 = $("#rblRequestType_0");
var radio1 = $("#rblRequestType_1");

radio0.checked = true;
radio1.checked = true;
0
hasanaydogar

私が見つけたクリーンなアプローチは、各ラジオボタンにIDを指定し、次のステートメントを使用して設定することです。

document.getElementById('publicedit').checked = true;
0
Fahim

要素のIDを使用して行うことができます

<label><input type="radio" name="travel_mode"  value="Flight" id="Flight"> Flight </label>
<label><input type="radio" name="travel_mode"  value="Train" id="Train"> Train </label>
<label><input type="radio" name="travel_mode"  value="Bus" id="Bus"> Bus </label>
<label><input type="radio" name="travel_mode"  value="Road" id="Road"> Other </label>

js:

$('#' + selected).prop('checked',true);
0
chandramohan
document.getElementById("TestToggleRadioButtonList").rows[0].cells[0].childNodes[0].checked = true;

ここで、TestToggleRadioButtonListRadioButtonListのIDです。

0
Andrei Bazanov