jQuery .load() 发布问题

发布于 2024-11-03 01:39:39 字数 484 浏览 0 评论 0原文

这段代码工作完美:

$(document).ready(function() {
  $("#submit").click(function(){
    $("#output").load("extract.php", {query: $("#input").val()} );
  });
});

但是,当我将链接从 extract.php 更改为外部服务器上的同一个文件时,脚本停止工作:

$(document).ready(function() {
  $("#submit").click(function(){
    $("#output").load("http://example.com/extract.php", {query: $("#input").val()} );
  });
});

根据 firebug,后一个脚本正在发布到外部文件,但没有由于某种原因的回应。有什么想法吗?非常欣赏。

This code is working perfectly:

$(document).ready(function() {
  $("#submit").click(function(){
    $("#output").load("extract.php", {query: $("#input").val()} );
  });
});

However, when I change the link from extract.php to the same exact file on an external server, the script stops working:

$(document).ready(function() {
  $("#submit").click(function(){
    $("#output").load("http://example.com/extract.php", {query: $("#input").val()} );
  });
});

According to firebug, the latter script is posting to the external file, but there is no response for some reason. Any thoughts? Greatly appreciate it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是伱的 2024-11-10 01:39:39

引用@Rocket:

您无法将 POST 请求发送到外部服务器,这称为同源策略。< /p>

您可以,但是,可以使用本地托管的一些服务器端代码(例如 PHP)来为您发出 POST 请求。这是一篇描述一种方法的帖子: PHP 中的 jQuery AJAX 代理(带有 POST 数据)

To quote @Rocket:

You cannot sent POST requests to an external server, it's called the Same Origin Policy.

What you can, however, do, is use some server-side code (such as PHP) hosted locally to make that POST request for you. Here is one such post describing one way to do it: jQuery AJAX Proxy (with POST data) in PHP

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文