我正在通过Modal PopUp进行发布。我想在相同的Modal PopUp上再次显示返回的值。我该怎么办?
map = new google.maps.Map(mapDiv, mapSettings);
答案 0 :(得分:0)
您需要使用Jquery ajax避免回发,然后在部分视图中检索结果,将html替换为div标签。
$.ajax
({
type: "POST",
url: '@Url.Action("ResetPassword", "ResetPassword")',
data: { dd: dd },
contentType: "application/json; charset=utf-8",
async: true,
cache: false,
traditional: true,
dataType: "html",
success: function (response) {
$("#div").html(response);
}
});