开发者

Getting selected text of a select listbox using JQuery when I already have the select object in hand

Here is an easy one, a true newbie question:

I know that it's possible to get the text of the select开发者_JS百科ion option like this

$('#selectBoxId option:selected').val(); 

But what if I already have the select object in my hand?

e.g.

var select = $('#selectBoxId');

What comes next? this is the right way?

select.find('option:selected').val();


Just select.val(); is enough. It will give you the selected value.

Working demo

If you want the selected option text then your need to do

select.find('option:selected').text();

Or

select.find('option:selected').html();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜