如何在文档加载时使用 jquery 在选择框中选择特定项目
我有选择框,
<select id ="myselect">
<option value="AA">AA</option>
<option value="AB">AB</option>
<option value="AC">AC</option>
<option value="AD">AD</option>
</select>
因此在加载文档时我想将选择框中的项目“AC”作为加载文档时的默认选定选项
$('#myselect').children('option').text( 'AC').attr('selected', 'selected');
因此,编写此语句后,它使我的选择框完全填充值“AC”。我该如何纠正这个问题 我尝试使用 if 语句比较“AC”的值。并且我没有选项的“值”作为数字
iam having the select box
<select id ="myselect">
<option value="AA">AA</option>
<option value="AB">AB</option>
<option value="AC">AC</option>
<option value="AD">AD</option>
</select>
so on document load I want to Make item "AC" in the select box as the default selected option on loading the document
$('#myselect').children('option').text('AC').attr('selected', 'selected');
so with this statement written it is making my select box to fill with values 'AC' completely for my select box. How do i correct that
and i tried in using the if statement comparing the value for 'AC'.And i dont have the "Value" for option as number
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它应该可以通过以下方式实现:
演示位于:jsbin。
It should be do-able with:
Demo at: jsbin.
您可以使用 .val() 设置选择的值。这将选择具有指定值的选项。
示例如下: http://jsfiddle.net/mtd6z/
You can use .val() to set the value of the select. This will select the option with the specified value.
Example here: http://jsfiddle.net/mtd6z/
你可能想要
You probably want
我建议不要使用Javascript(除非有一些非常重要的原因)-
可以简单地这样做
I suggest not using Javascript for this (unless some very important reason ) -
It can be simply done this way