标签: jquery select
通常,我们以这种方式得到第一个价值:
$("#color option:first").val()
但我需要像
$(this.id option:first).val()
当然它不起作用。
答案 0 :(得分:4)
$("option:first", this).val()
另一个选项是find(children也可以使用,具体取决于您的结构):
find
children
$(this).find("option:first").val()