0

我有一个带有不断变化的 ID 的选择列表,我可以从它所在的 div 的 id 中引用其选定项目的值:

var weight = parseFloat(\$(\".divInner select\").val()); 

我无法确定如何获取所选项目的类。我怎样才能抓住那门课?

HTML

<div class="divInner">
    <select id="*(changes)*" class="option required" >
        <option class="0" value="">-- Select --</option>
        <option class="258" value="1.3200">Nifty Thing</option>
        <option class="232" value="0.5900">Snazzy Thing</option>
    </select>
</div>
4

1 回答 1

6

在 JQuery 中使用:selected选项:

$('div.divInner select option:selected').attr('class');
于 2013-07-15T15:01:52.740 回答