本文介绍了按值设置选择选项“已选择"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个select字段,其中有一些选项.现在,我需要使用jQuery选择那些options之一.但是,当我只知道必须选择的optionvalue时,该怎么办?

I have a select field with some options in it. Now I need to select one of those options with jQuery. But how can I do that when I only know the value of the option that must be selected?

我有以下HTML:

<div class="id_100">
  <select>
    <option value="val1">Val 1</option>
    <option value="val2">Val 2</option>
    <option value="val3">Val 3</option>
  </select>
</div>

我需要选择值为val2的选项.该怎么办?

I need to select the option with value val2. How can this be done?

这是一个演示页面: http://jsfiddle.net/9Stxb/

Here's a demo page:http://jsfiddle.net/9Stxb/

推荐答案

有一种更简单的方法,不需要您进入options标记:

There's an easier way that doesn't require you to go into the options tag:

$("div.id_100 select").val("val2");

查看此 jQuery方法.

这篇关于按值设置选择选项“已选择"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 02:33