开发者

Get all options in a select menu

开发者_JAVA技巧

How do I get all the options (text,not the value) of a select menu by by specifying its id


var textArr = $("#mySelect").map(function() {
    return $(this).text();
}).get();
alert(textArr);

Demo here. And see http://api.jquery.com/map/

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜