使用jQuery.get Ajax函数时无法获得响应

时间:2013-05-19 21:49:42

标签: jquery ajax

我在服务器上有python脚本。它显示简单的html页面。它在浏览器中打开很好。我尝试使用ajax获取此页面。但响应似乎已超时(只是假设......)并且没有收到任何回复。 Chrome会显示此请求的状态为已取消。为什么呢?

$.get("MYURL",function(data,status){
                    alert("Data: " + data + "\nStatus: " + status);
                  });

enter image description hereenter image description here PS。使用ajax的请求的html存储在localhost中。如果服务器阻止我的ajax请求,那么它会阻止 XSS

更新: Python脚本

#!/usr/bin/python
print "Content-type: text/html"
print
print "<html><head><title>test.py</title></head><body><h1>Hello, World!</h1></body>"
print 

UPDATE2: Chrome控制台: XMLHttpRequest无法加载http://MYSERVER/hello.py。 Access-Control-Allow-Origin不允许原点http://localhost

0 个答案:

没有答案