问问题
103 次
3 回答
0
:selected
匹配 selected <option>
s,而不是<select>
元素。更改选择器:
$(":checkbox,:radio,:text,select", this)
于 2013-04-01T18:42:45.287 回答
0
<select id="foo">
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
</select>
对于选择标签,您可以使用:selected
过滤器来获取选择选项父项的 id:
var id = $(this).children(":selected").attr("id");
于 2013-04-01T18:45:22.807 回答