我试图从网上获取一些XML文件,我需要在我的html页面中显示...... 这就是我的javascript文件的样子:
$(document).ready(function(){
$(".update").append("<ul></ul>");
$.ajax({
type: "GET",
url: "https://www2.informatik.hu-berlin.de/~xing/Lib/Docs/jaxp/docs/tutorial/sax/samples/slideSample01.xml",
dataType: "xml",
success: function(xml){
$(xml).find('slide').each(function(){
var sTitle = $(this).find('title').text();
//var sPublisher = $(this).find('heading').text();
$("<li></li>").html(sTitle + ", " + "sPublisher").appendTo(".update ul");
});
},
error: function() {
alert("An error occurred while processing XML file.");
}
});
});
当我尝试使用此URL运行此操作时,浏览器会显示一条错误消息&#34;处理XML文件时发生错误&#34; .................. ...... 但是,如果我下载XML文件并将其写为以下....它将运行页面没有任何错误.......
$.ajax({
type: "GET",
url: "data.xml",
dataType: "xml",
...................................
我还尝试使用另一个在线XML文件发生同样的事情......任何人都知道如何解决这个问题??? 谢谢!!!!!