3

我正在尝试为我的下拉菜单获取用户选择的文本。

我有

   var selectMenu=document.createElement('select');
            selectMenu.className='menu';

        for(var i=0; i<array.length; i++){

           var option=document.createElement('option');
               option.className='option';
               option.innerHTML=array[i].name;
               option.value=array[i].id;

            selectMenu.appendChild(option);
         }

         $(selectMenu).change(function(){

           //i want to get the selected text here

           //I know I could get value by using $(this).val()
           //but not sure how to get the selected text here.

         })

我用谷歌搜索了这个问题,我发现的都是

$('#menu option:selected).text().

反正有什么我需要的吗?非常感谢!

4

2 回答 2

7

如果你有类似的东西

<select>
    <option value='1'> SO</option>
    <option value='2'>GOOGLE</option>
</select>

你可以试试

$("select").change(function(e){
    console.log($(":selected",this).text());
});

http://jsfiddle.net/Ykzp7/

于 2013-01-04T21:36:57.660 回答
1

尝试$('.menu option:selected).text()而不是$('#menu...

于 2013-01-04T21:34:52.010 回答