用jquery ajax返回远程数据的问题
例如:有一个hello.xml文件jquery代码如下:$.ajax({type:"GET",url:"hello.xml",dataType:"text",succes...
例如:有一个hello.xml文件
jquery代码如下:
$.ajax({
type: "GET",
url: "hello.xml",
dataType: "text",
success: function(data){
alert(data);
}
});
以上两个文件都于本地运行,是可以alert出data值,但是我把hello.xml传上服务器,jquery代码在本地运行,就会出错,代码如下:
$.ajax({
type: "GET",
url: "http://www.xxx.com/hello.xml",
dataType: "text",
success: function(data){
alert(data);
}
});
请问各位大虾是什么问题? 展开
jquery代码如下:
$.ajax({
type: "GET",
url: "hello.xml",
dataType: "text",
success: function(data){
alert(data);
}
});
以上两个文件都于本地运行,是可以alert出data值,但是我把hello.xml传上服务器,jquery代码在本地运行,就会出错,代码如下:
$.ajax({
type: "GET",
url: "http://www.xxx.com/hello.xml",
dataType: "text",
success: function(data){
alert(data);
}
});
请问各位大虾是什么问题? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询