我有一个问题,我想从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中起作用.
原文链接:https://www.f2er.com/jquery/428857.html$.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('