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 "></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 "></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);
}
試して
function RadionButtonSelectedValueSet(name, SelectdValue) {
$('input[name="' + name+ '"][value="' + SelectdValue + '"]').prop('checked', true);
}
また、dom readyでメソッドを呼び出します
<script type="text/javascript">
jQuery(function(){
RadionButtonSelectedValueSet('RBLExperienceApplicable', '1');
})
</script>
よりエレガントに行うことができます。
function RadionButtonSelectedValueSet(name, SelectedValue) {
$('input[name="' + name+ '"]').val([SelectedValue]);
}
これも試すことができます
function SetRadiobuttonValue(selectedValue)
{
$(':radio[value="' + selectedValue + '"]').attr('checked', 'checked');
}
以下のスクリプトは、すべてのブラウザーで正常に機能します。
function RadionButtonSelectedValueSet(name, SelectdValue) {
$('input[name="' + name + '"][value="' + SelectdValue + '"]').attr('checked',true);
}
選択が変更された場合は、最初に他のチェックをクリアしてください。アラ...
$('input[name="' + value.id + '"]').attr('checked', false);
$('input[name="' + value.id + '"][value="' + thing[value.prop] + '"]').attr('checked', true);
$('input[name="RBLExperienceApplicable"]').prop('checked',true);
ありがとう、相棒...
これは私のために働いた唯一の構文です
$('input[name="assReq"][value="' + obj["AssociationReq"] + '"]').prop('checked', 'checked');
<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');
}
});
複数のドロップダウン用
$('[id^=RBLExperienceApplicable][value='+ SelectedVAlue +']').attr("checked","checked");
ここでRBLExperienceApplicable
は、ラジオボタングループの入力タグIDの一致部分です。 [id^=RBLExperienceApplicable]
は、IDがRBLExperienceApplicable
で始まるすべてのラジオボタンに一致します
<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;
私が見つけたクリーンなアプローチは、各ラジオボタンにID
を指定し、次のステートメントを使用して設定することです。
document.getElementById('publicedit').checked = true;
要素の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);
document.getElementById("TestToggleRadioButtonList").rows[0].cells[0].childNodes[0].checked = true;
ここで、TestToggleRadioButtonList
はRadioButtonList
のIDです。