C# 显示jquery ajax成功结果的值

C# 显示jquery ajax成功结果的值,c#,jquery,html,ajax,C#,Jquery,Html,Ajax,在jQueryAjax中,我从数据库中获取值,并需要在下拉列表中显示。 首先,我传递id并获取级别。使用tat级别id和名称,我再次获取与所选级别相关的值并显示在下拉列表中 function Level(Id) { $.ajax({ url: 'GetLevel' + '/?Id=' + Id, type: "POST", dataType: "json", contentType: 'application/json',

在jQueryAjax中,我从数据库中获取值,并需要在下拉列表中显示。 首先,我传递id并获取级别。使用tat级别id和名称,我再次获取与所选级别相关的值并显示在下拉列表中

function Level(Id) {
    $.ajax({
        url: 'GetLevel' + '/?Id=' + Id,
        type: "POST",
        dataType: "json",
        contentType: 'application/json',
        success: function (result) {
            testing(value.Value);
        },
        complete: function () { },
        error: ServiceFailed// When Service call fails
    });    
}

function testing(LevelId) {
    result = getDropdownValues();
    $('#drpe >option').remove();
            for (var i = result.length; i--; ) {
                $.each(result, function (key, value) {
                    $("#drp").append($("<option></option>").val(value.Key).html(value.Value));
// it does not display the values in drop down 
//it is empty
                });
}

function getDropdownValues (LevelId, selectedLevel) {
    var passVal = null;
    $.ajax({
        url: 'GetValues' + '/?selectedLevel=' + selectedLevel + '&LevelId=' + LevelId,
        type: "POST",
        dataType: "json",
        contentType: 'application/json',
        async: false,
        success: function (result) {
            passVal = result;
        },
        complete: function () { },
        error: ServiceFailed// When Service call fails
    });
    return passVal;
}
我用的是c类

public class Level
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public List<ListEntity> Value { get; set; }
    }

如果我正确理解了您的问题,您会问如何填充下拉列表,对吗? 如果是这样的话,假设你的网站返回一个json结果,你就创建一个这样的列表

{Text=Valuename,Value=ValueId}

您可以这样做:

$('#MyDropDown').empty();
$.each(result, function (index, optionData) {
    $('#MyDropDown').append("<option value='" + optionData.Value + "'>" + optionData.Text + "</option>");
});