我正在处理以下页面。
http://www.ranger.ryerson.ca/library/test/steveDev/testcarousel/test.html
它适用于 firefox、chrome 和 opera,但在 IE6、IE7 和 Safari(被上帝抛弃的浏览器)中,它们都给我“parsererror”
我的页面使用 jquery XML 解析器,而糟糕的浏览器不喜欢它。麻烦的代码如下
$.ajax({
type: "GET",
url: "http://www.ranger.ryerson.ca/library/test/steveDev/testcarousel/readXML.cfm",
dataType: "xml",
success: function(xml) {
$(xml).find('images').each(function(){
$(this).find('pic').each(function() {
temp= '<a href="'+$(this).find('link').text()+'"><img src="'+$(this).find('thumbnail').text()+'" width="'+$(this).find('width').text()+'" style="border-style: none" height="75" title="'+$(this).find('alt').text()+'"alt="'+$(this).find('alt').text()+'" /></a>';
carousel.add(count, temp);
count++;
});
carousel.size(count);
});
},
error: function(XMLHttpRequest, textStatus, errorThrown){
alert(textStatus);
}
})
我该如何解决我的问题