我在本地PC和本地Publish中可以正常运行以下代码。但是当我将其发布到另一台PC上时,因为单击按钮登录后,下面的PC Server代码刷新页面。
我还尝试了以下事件file://
,但它会不断刷新页面。
JS
e.stopPropagation(), e.stopimmediatepropagation()
HTML
$("#frmVerification").on('submit', function (e) {
e.preventDefault();
var elem = $("#frmVerification");
elem.find('.loading').removeClass('hidden');
$.ajax({
url: '../Account/Verify',
data: $(this).serialize(),
type: 'get',
success: function (res) {
console.log(res);
if (res.success) {
setTimeout(function () {
window.location.replace(res.url);
}, 1000);
}
elem.find('.loading').addClass('hidden');
}
});
})
答案 0 :(得分:0)
您可以尝试这个。
<form id="frmVerification" onsubmit="return false">