是否可以像这样在我的 JS 中添加其他其他功能:?
如果响应==成功重定向到主页
如果响应==失败重定向到失败
$.ajax({
type: "POST",
url: action,
data: form_data,
success: function(response) {
if (response == 'success')
window.location.replace("home");
else
$("#message").html("<div class='error_log'><p class='error'>Invalid username and/or password.</p></div>");
}
});