0

我有一个菜单。这些菜单包括一些艺术家,当管理员单击复选框时,艺术家被插入到数据库中。

首先,

function AddDataImdb(par, par2, par3) {

    var artistIds = [];
    $("input[name='" + par + "']:checked").each(function () {
        artistIds.push($(this).val());
    });

    $.post('/json/management/AddDataImdbAjax', {
        "artistIds": artistIds
    }, function (response) {
        if (response == 'error') {

            alert("Sanatçı bulunamadı, yönlendiriliyorsunuz");
            window.location.replace("myurl");

        } else {
            alert("succesfully added");
            $("#" + par2 + "").append(('<br /><input type="checkbox" name =' + par + ' value=' + response + ' />' + par3 + '<br />'));
        }
    });

}

使用上面的代码,我可以添加我的 div 新添加的艺术家。

问题是当管理员插入 2 个或更多艺术家时,它显示最后一个添加

$("#"+par2+"").append(('<br /><input type="checkbox" name ='+par+' value='+response+' />'+par3+'<br />'));

上面的代码添加了 div。我怎样才能将这些添加为数组?我能做些什么 ?

4

1 回答 1

1

你能说更多吗?响应的内容是什么?

如果您的回复是一个列表,那么您可以这样做:

$.each(reponse, function () {
    //append as div
}):
于 2012-04-26T17:43:34.640 回答