以下是我需要在响应AJAX请求时刷新的div
。
<div class="col-xs-4 avatar">
<a title="Change Profile Picture" onclick="changeprofile()">
<img alt="Profile photo" class="" src="http://example.com/service/getUserImage/123/256">
</a>
</div>
function updateprofilepic() {
var formData = new FormData();
formData.append("avatar", $('input[type=file]')[0].files[0]);
$.ajax({
method: "POST",
url: "/profile",
data: formData,
contentType: false,
processData: false
}).done(function(msg1) {
toastr.success(msg1);
// here i want to refersh that div.
});
}
是否有任何方法可以使用相同的内容刷新,因为我的图像是从第三方获取的,因此无需更改内容。我只想刷新那个自动显示新内容的div。