1

我需要从下拉菜单中选择一个项目,

我正在使用这个脚本:LINK 这是我的代码,我只需要在 javascript 中获取值:

function checkData() {
    var pagesObj = document.getElementById("website2"); 
    alert(pagesObj.options[pagesObj.selectedIndex].value);
}

$(document).ready(function() {
    $.ajax({
        url: "get_data.php",
        cache: false,
        dataType: 'json',
        data: {},
        success: function(data) {
            for (var i = 0; i < data.results.length; i++) {
                if(data.results[i].value != '0' ) {
                    oHandler = $("#websites2").msDropDown().data("dd");
                    oHandler.add({text:'', value:'', title:''});
                    oHandler.add({text:data.results[i].text,value:data.results[i].value,title:data.results[i].title});
                }
             }
         }
    });
});

checkData()函数给我错误,选项未定义且为空

编辑:

html:

<select name="websites2" id="websites2" onChange="checkData()" style="width:200px;"tabindex="1"></select>
4

2 回答 2

1

既然你有 jQuery

$('#websites2').val()

应该这样做,尽管我最近发现在 Opera 上有点不可靠。在我测试过的所有浏览器上,以下内容对我来说都是可靠的:

$('#websites2 option:selected').val()
于 2012-07-01T15:39:51.660 回答
1

I believe it is as simple as this (using jQuery):

var selectedIndex = $("#websites2").val();
于 2012-07-01T15:34:45.937 回答