0

我基本上将人插入我的数据库并使用下面的代码。插入数据库后 if(response==ok)

它将人员添加到数据库。但是,我必须显示添加的人。如果我使用重新加载它发送主页。你对此有何建议?

function AddData(par){

    var artistName =  $("input[name='"+par+"']").attr('id') + '-'+$("input[name='"+par+"']").val();

   $.post('/json/management/AddDataAjax2', 
    {
       "artistName": artistName
    },
    function(response){
        console.log(response);
        if(response =='ok')
             alert("Başarıyla eklendi");
         else{
             alert("Sanatçı bulunamadı, yönlendiriliyorsunuz");
             window.location.replace("http://www.sinemalar.com/management/artistAddEditRemove/");
         }
});
}
4

1 回答 1

2

您必须阅读文档:http ://api.jquery.com/jQuery.post/ 。您的响应可以是任何内容,例如 HTML、JSON...

于 2012-04-14T10:20:35.837 回答