2015-01-16 70 views

回答

2

只要做到:

$(selectElt).children("option:first"); 

$(selectElt).children("option:eq(0)"); 

$(selectElt).children("option:nth-child(1)"); 

或上下文:

$("option:first", selectElt) 
4

您可以嘗試

$(selectElt).children('option').eq(0) 

$(selectElt).children('option:first') 

$(selectElt).children('option').first() 

正如RoryMcCrossan說

$('option:first',selectElt) 

,最後一個

$(selectElt).children('option').filter(':first') 
+2

只是爲了完整性也有上下文選擇:'$( '選項:第一',selectElt)'。 –

+0

@RoryMcCrossan忘記了這一點,和fvaleri提醒我關於過濾器:) –

1

或者:

$(selectElt).filter(":first") 
相關問題