在ajax请求后重新加载div

Ajax请求后如何刷新或重新加载div?我有此代码:

function Register(event) {

event.preventDefault();

console.log(event);

$.ajax({

type: 'POST',

url: register,

data: {

name: $('#name').val(),

email: $('#Email').val(),

password: $('#password').val(),

_token: $('#token').val()

},

dataType : "json",

success: function (data) {

if (data.success){

$('#header').

$('#Register').modal('hide');

}

}

});

}

我需要重新加载或刷新标题div。

回答:

您可以这样加载div.div之前请注意空格 (" #divid");

if (data.success){

$("#divid").load(" #divid");

}

以上是 在ajax请求后重新加载div 的全部内容, 来源链接: utcz.com/qa/409772.html

回到顶部