从组合框的值中获取选项的文本

可能重复:
jQuery获取选择选项文本

让我们说,我有组合的价值,但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是组合选项的价值


$(".ddlOperators option[value='1']").text();

另外, select元素的类不应该以点开头,它应该是:

<select class="ddlOperators">

演示

链接地址: http://www.djcxy.com/p/83061.html

上一篇: get the text of the option from the value of the combobox

下一篇: Get text value of selected option in Jquery