jQuery <select>:如何获得$(this.id):首先?</select>

时间:2010-04-18 07:15:23

标签: jquery select

通常,我们以这种方式得到第一个价值:

$("#color option:first").val()

但我需要像

这样的东西
$(this.id option:first).val()

当然它不起作用。

1 个答案:

答案 0 :(得分:4)

$("option:first", this).val()

另一个选项是findchildren也可以使用,具体取决于您的结构):

$(this).find("option:first").val()