显示jquery ajax成功结果的值

时间:2011-09-07 10:08:10

标签: c# jquery html ajax

在jquery ajax中,我从数据库中获取值,需要在下拉列表中显示。 首先我传递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#class

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

1 个答案:

答案 0 :(得分:0)

如果我正确地提出你的问题,你问的是如何正确填写下拉菜单? 如果是这样,并假设您的网站返回一个json结果,并创建一个类似的列表

{Text =“Valuename”,Value = ValueId}

你可以这样做:

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