admin管理员组文章数量:1339774
For ex. we have
<select id="menu">
<option value="1">sample 1</option>
<option value="2">sample 2</option>
</select>
and
<input type="radio" id="parentcheck" value="1">Button 1
<input type="radio" id="parentcheck" value="2">Button 2
I want to simply "clone" user input. Let's say we want to set them to exact values and trigger their functions.
In my case i have functions for both of them
$("#menu").change(function () {...
$(".parentcheck").click(function () {...
For ex. how to select Sample 1 and Button 1 and fire their function?
For ex. we have
<select id="menu">
<option value="1">sample 1</option>
<option value="2">sample 2</option>
</select>
and
<input type="radio" id="parentcheck" value="1">Button 1
<input type="radio" id="parentcheck" value="2">Button 2
I want to simply "clone" user input. Let's say we want to set them to exact values and trigger their functions.
In my case i have functions for both of them
$("#menu").change(function () {...
$(".parentcheck").click(function () {...
For ex. how to select Sample 1 and Button 1 and fire their function?
Share Improve this question asked Oct 5, 2011 at 17:03 LEQADALEQADA 2,0023 gold badges26 silver badges43 bronze badges 1-
ment from @f0x originally via the answers: "you have two element with the same
id
, that's invalid and could be replaced by a classname" – ndequeker Commented Feb 21, 2018 at 13:00
5 Answers
Reset to default 5For the first case you can use .val()
and trigger the event manually in both cases.
Consider the following
$('#menu').val(2).trigger('change');
In the above, we select the option with the value of 2.
And for the radio buttons
$('#parentcheck').prop('checked', true).trigger('change');
Just set the attribute of the option/checkbox
For the options it is "selected" and for the checkboxes it is "checked"
Also, trigger the event after that using trigger()
Example:
$( '#menu option[value=whatever]' ).attr( 'selected', 'selected' ).trigger( 'change' );
$( '.parentcheck' ).attr( 'checked', 'checked' ).trigger( 'click' );
I think this is something you are looking for...
$("#menu option[value='1]").attr("selected",true).trigger("change");
$("input[type='radio'][value='1']").attr("checked",true).trigger("change");
Again the same answer
$("#menu option[value='1]").prop("selected",true).trigger("change");
$("input[type='radio'][value='1']").prop("checked",true).trigger("change");
use .prop instead of .attr
Here is an example in pure javascript:
const $ = document.querySelector.bind(document);
$('#fee').checked = true;
setTimeout(() => {
$('#one').checked = true;
},1500)
<input id="one" type="radio" name="bonk"/> One
<input id="two" type="radio" name="bonk"/> Two
<input id="fee" type="radio" name="bonk"/> Three
本文标签: javascriptHow to programmatically set radiobutton and select option with jsStack Overflow
版权声明:本文标题:javascript - How to programmatically set radiobutton and select option with js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743604548a2509101.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论