用jQuery调用Xml,(无效的XML)

前端之家收集整理的这篇文章主要介绍了用jQuery调用Xml,(无效的XML)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个问题,我想从XML文件获取一些数据(如果我可以说它是XML文件),使用jQuery:

这是我的jQuery,它适用于普通的XML文件

$.ajax({
        type: "GET",url: "test.xml",dataType: "xml",success: function(xml) {
            $(xml).find('result').each(function(){
            var bid = $(this).find('bid').text();
            alert(bid);
            });
            }
        });

但这是数据:

   

因为它有“< string ...>它不起作用……

有人可以建议如何解决它或者可能有另一种方法来修复…

非常感谢 !!!!!!

最佳答案
如果xml格式完全在你的控制范围之外,你可能会有点像这样.这对我在FireFox中起作用.

$.ajax({
  type: "GET",// change dataType to 'text' so that jquery doesn't try to parse xml
  dataType: "text",success: function(xml) {

    // just remove the declaration using replace()
    xml = xml.replace('
原文链接:https://www.f2er.com/jquery/428857.html

猜你在找的jQuery相关文章