如何在 Ajax 调用上使路径动态化,当我在本地运行代码时,它只能在 URL 路径为“/WebsiteFolder/assets/mail/contact_me.php”时起作用,并且当它托管在 cPanel 上时,它只能起作用当URL路径为“/assets/mail/contact_me.php”时,如何使路径动态化?$.ajax({url: "/WebsiteFolder/assets/mail/contact_me.php",type: "POST",data: { name: name, phone: phone, email: email, message: message,},cache: false,success: function () { // Success message },error: function (xhr, status, error) { // Fail message},complete: function () { setTimeout(function () { $this.prop("disabled", false); // Re-enable submit button when AJAX call is complete }, 1000);},});
1 回答
慕慕森
TA贡献1856条经验 获得超17个赞
使用相对路径。
删除前面的/
.
代替
"/WebsiteFolder/assets/mail/contact_me.php"
你将会拥有
"assets/mail/contact_me.php"
- 1 回答
- 0 关注
- 64 浏览
添加回答
举报
0/150
提交
取消