此代码在“在线”模式下无效,但在“localhost”中工作...有人可以帮助我吗?控制台不显示错误。
function contactForm() {
$.ajax({
type: 'POST',
url: 'main.php',
data: {
name: $(".js-contact-name").text(),
email: $(".js-contact-email").text().replace(/(\r\n|\n|\r)/gm, "").replace(/\s+/g, " "),
subject: $(".js-contact-subject").text(),
message: $(".js-contact-brief").text().replace(/(\r\n|\n|\r)/gm, "").replace(/\s+/g, " ")},
success: function (responseText) {
$(".js-mail-message").addClass("js-hidden");
$(".js-contact-submit").addClass("js-hidden");
$(".js-mail-success").removeClass("js-hidden")
console.log(responseText);
},
async: true
});
return false;
})
}
答案 0 :(得分:0)
根据此代码所属项目的托管服务提供商,服务器配置不支持请求,ajax。