admin管理员组文章数量:1342908
I have this code:
<input type="text" name="frameSelection" id="frameSelection" value="Option 1" />
<a id="change">Change to Option 2</a>
When I click on the link I want to change the field value into "Option 2". How can I do that?
I have this code:
<input type="text" name="frameSelection" id="frameSelection" value="Option 1" />
<a id="change">Change to Option 2</a>
When I click on the link I want to change the field value into "Option 2". How can I do that?
Share Improve this question asked Dec 21, 2011 at 23:30 Andrei RRRAndrei RRR 3,16217 gold badges47 silver badges82 bronze badges2 Answers
Reset to default 9Very simple. Use click
to attach an event handler to the click
event, and val
to set the value:
$("#change").click(function() {
$("#frameSelection").val("Option 2");
});
As mentioned in other answers, you may want to prevent the default behaviour of the link, but with your code as it currently is in the question (with no href
attribute on the a
element) that's not necessary. Just bear it in mind if that could change.
With jQuery:
$('#change').click(
function(e){
e.preventDefault; // if your a has an href attribute, this prevents the browser
// following that link.
$('#frameSelection').val("Option 2");
});
References:
click()
.e.preventDefault
.val()
.
本文标签: javascriptJquery Click to Change Form Field ValueStack Overflow
版权声明:本文标题:javascript - Jquery Click to Change Form Field Value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743597761a2508134.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论