我有2个单选按钮。我需要根据单选按钮选择将值加载到选择框中。 这些是单选按钮
<label class="label">Good/Bad</label><input
id="publishRadio" type="radio" name="good" value="Yes"
checked="checked" /> Good
<input type="radio"
name="positive" value="No /"> Bad
选择框是
<input id="value" type="hidden" value="" />
<label class="label">Select Monitoring</label>
<select id="types">
</select>
请帮帮我。
答案 0 :(得分:0)
这会在您的选择列表中添加一个选项。
$("input[type=radio]").click( function(){
$('#types').append($('<option/>', {
value: $("#publishRadio").val(),
text : $("#publishRadio").val()
}));
});