jQuery .load() 发布问题
这段代码工作完美:
$(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
引用@Rocket:
您可以,但是,可以使用本地托管的一些服务器端代码(例如 PHP)来为您发出 POST 请求。这是一篇描述一种方法的帖子: PHP 中的 jQuery AJAX 代理(带有 POST 数据)
To quote @Rocket:
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