admin管理员组文章数量:1352008
I am trying to copy a name of the selected html form option field to another field using jquery.
This is what i got now:
script
$(document).ready(
function()
{
//check for change on the categories menu
$('#categories').change(function() {
//get category value
name = $('#categories').text();
$('#name').val(name)
});
});
HTML
<form action="editcat.pnp" method="post" accept-charset="utf-8">
<table>
<tr>
<td><label for="category">Category:</label></td><td><select name="category_id" id="categories">
<option value="1">Info</option>
<option value="2">Resr</option>
<option value="3">Pro</option>
<option value="4">Geo</option>
<option value="5">Site's</option>
<option value="6">Well</option>
<option value="7">Link</option>
<option value="#" selected="selected">Please select</option>
</select></td>
</tr>
<tr>
<tr>
<td><label for="name">Name:</label></td><td><input name="name" type="text" size="40" maxlength="40" id="name"></td>
</tr>
<tr>
<td></td><td><input type="submit" value="Update"> <input type="reset"></td>
</tr>
</table>
</form>
The problem is that the name field now contains all the names from the option dropdown list and not only the one i selected.
I am trying to copy a name of the selected html form option field to another field using jquery.
This is what i got now:
script
$(document).ready(
function()
{
//check for change on the categories menu
$('#categories').change(function() {
//get category value
name = $('#categories').text();
$('#name').val(name)
});
});
HTML
<form action="editcat.pnp" method="post" accept-charset="utf-8">
<table>
<tr>
<td><label for="category">Category:</label></td><td><select name="category_id" id="categories">
<option value="1">Info</option>
<option value="2">Resr</option>
<option value="3">Pro</option>
<option value="4">Geo</option>
<option value="5">Site's</option>
<option value="6">Well</option>
<option value="7">Link</option>
<option value="#" selected="selected">Please select</option>
</select></td>
</tr>
<tr>
<tr>
<td><label for="name">Name:</label></td><td><input name="name" type="text" size="40" maxlength="40" id="name"></td>
</tr>
<tr>
<td></td><td><input type="submit" value="Update"> <input type="reset"></td>
</tr>
</table>
</form>
The problem is that the name field now contains all the names from the option dropdown list and not only the one i selected.
Share Improve this question edited May 16, 2012 at 12:53 HyperDevil asked May 16, 2012 at 12:47 HyperDevilHyperDevil 2,6499 gold badges42 silver badges52 bronze badges 1- have some html to back that up? – shanabus Commented May 16, 2012 at 12:49
4 Answers
Reset to default 7You should use :selected Selector to get selected option
, and then .text()
to get its name.
var name = $('#categories option:selected').text();
try this....
$(document).ready(
function()
{
//check for change on the categories menu
$('#categories').change(function() {
//get category value
name = $("#categories option:selected").text();
$('#name').val(name)
});
});
Hope its help
I think you are looking to use $("#categories").val()
instead of .text()
.
Example: http://jsfiddle/shanabus/wZAM7/
Read jQuery Docs and shown Examples in the .change() function.
本文标签: javascriptJquery get name of option fieldStack Overflow
版权声明:本文标题:javascript - Jquery: get name of option field - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743906768a2559665.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论