有人可以帮我理解以下代码中“汽车”一词的含义吗?是文件的名称还是xml doc中的标签?
$('car',xmlDoc).each(function(i) {
var pointData = new Array();
...
答案 0 :(得分:2)
在这种情况下,它是xml文档xmlDoc
中标记的名称。文件文件可能如下所示:
<stuff>
<car make="ford" color="blue"></car>
<car make="chevrolet" color="red"></car>
<car make="dodge" color="black"></car>
</stuff>
在这种情况下,如果你做了
$("car", xmlDoc).each(function() {
console.log($(this).attr("color");
});
您要为每个car
元素运行该功能3次,并获取每个元素的color
属性。