从组合框的值中获取选项的文本[重复]

Posted

技术标签:

【中文标题】从组合框的值中获取选项的文本[重复]【英文标题】:get the text of the option from the value of the combobox [duplicate] 【发布时间】:2011-10-04 01:15:40 【问题描述】:

可能重复:jQuery get select option text

假设我有组合的值,但 without make a selection,现在我想知道如何制作一个选择器,为我带来该值的文本

html

<select class=".ddlOperators" >
      <option value="1">Value 1</option>
      <option value="2">Value 2</option>
      <option value="3">Value 3</option>
      <option value="4">Value 4</option>
 </select>

我试过这样

$(".ddlOperators option").find('1')

注意 1 是组合选项的值

【问题讨论】:

【参考方案1】:
$(".ddlOperators option[value='1']").text();

另外,select 元素的类前面不应该有一个点,它应该是:

<select class="ddlOperators">

Demo

【讨论】:

以上是关于从组合框的值中获取选项的文本[重复]的主要内容,如果未能解决你的问题,请参考以下文章

在 ExtJS 中获取组合框的值

将组合框的值作为字段传递

尝试在 mousepress 事件中使用来自另一个组合框的值加载自定义组合框

文本框的可见性取决于组合框的值

extjs:加载时如何设置组合框的值

C#组合框控件ComboBox