我正在使用jQuery和AJAX创建CMS。当我点击我的“添加广告系列”按钮时,它会在数据库中创建一个唯一的客户端ID,并且在重新加载时,新客户端会显示在其容器中。我正在尝试使用ajax来动态重装容器,我没有我希望的确切运气。我可以让它重新加载,但它就像它在描述每个客户端一样!
function AddNewClient() {
dataToLoad = 'clientID=' + clientID + '&addClient=yes';
$.ajax({ type: 'post', url: '/clients/controller.php', datatype: 'html', data: dataToLoad, target: ('#clientssidebar'), async: false, success: function(html){ $('#clientssidebar').html(html); }, error: function() { alert('An error occured!'); } });
};
答案 0 :(得分:2)
尝试:
function AddNewClient()
{
dataToLoad = 'clientID=' + clientID + '&addClient=yes';
$.ajax({
type: 'post',
url: '/clients/controller.php',
data: dataToLoad,
success: function(html){
$('#clientssidebar').html(html); },
error: function() {
alert('An error occured!'); }
});
}