$(document).ready(function(){
$.ajax({
url:"list.xml",
dataType:"xml",
type:"GET",
success:function(data){
$(data).find('City').each(function(){
var book = $(this);
var city = book.attr("Heb");
$("#ll").append(city);
})
}
})
})
好的,所以在查找错误后,似乎错误就是解析xml数据
我的xml看起来像这样 This this the XML file
这个文件有什么问题?
答案 0 :(得分:0)
有像
这样的元素<City Heb="בני עי"ש" En="Bene Ayish"/>
可能导致问题。您可以将格式更改为
<City En="Bene Ayish">בני עי"ש</City>