1

我正在处理以下页面。

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);
        } 

    })

我该如何解决我的问题

4

1 回答 1

2

此节点上遇到编码错误:

<alt>Eugénie</alt>

在第 97 行。

我注意到您指定encoding="utf-8"为编码。你确定"é"真的是用utf-8编码的吗?

于 2009-10-07T15:23:24.207 回答