2011-04-12 49 views

回答

10

你可以寫

$('#dropDownId option:selected').next().val() 

或者

$('#dropDownId option:selected+option').val() 
1
$('#selectid option:selected').next().val() 
0

嘗試:

$('#selectId>option:selected').next().val() 
相關問題