我正在尝试为我的下拉菜单获取用户选择的文本。
我有
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().
反正有什么我需要的吗?非常感谢!