gpt4 book ai didi

jquery - 使用 jQuery 将数据发送到绝对 URL

转载 作者:行者123 更新时间:2023-12-01 01:01:46 25 4
gpt4 key购买 nike

我有一个 URL 为 localhost/dir1/dir2/file.html 的 HTML 文件。在这个文件中,我通过 jquery 将数据发送到服务器。

$('#element').live("change", function(){
$.ajax({
url: "localhost/dir1/dir3/file.php",
type: "POST",
data: { esp: $(this).val() },
success: function(result){
$("#element2").html(result);
}
})

由于jquery将数据发送到localhost/dir1/dir2/localhost/dir1/dir3/file.php,我收到错误,但我需要将数据发送到localhost/dir1/dir3/file.php。我怎样才能做到这一点?

最佳答案

将您的网址更改为:

   /dir1/dir3/file.php

这可以避免将协议(protocol)和服务器硬编码到您的代码中。

关于jquery - 使用 jQuery 将数据发送到绝对 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16469431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com