标签: jquery-selectors
如何通过指定其ID来获取选择菜单的所有选项(文本,而不是值)
答案 0 :(得分:1)
var textArr = $("#mySelect").map(function() { return $(this).text(); }).get(); alert(textArr);
Demo here。请参阅http://api.jquery.com/map/