function xmlToJson(xml) { / 創建回傳物件
var obj = {};
if (xml.nodeType == 1) { // 元素
// 做屬性
if (xml.attributes.length > 0) {
obj["@attributes" ] = {};
for (var j = 0; j var attribute = xml.attributes.item(j) ;
obj["@attributes"][attribute.nodeName] = attribute.nodeValue;
}
}
} else if (xml.nodeType == 3) { // 文字
} else if (xml.nodeType == 3) { // 文字
} obj = xml.nodeValue;
}
// 做子元素
if (xml.hasChildNodes()) {
for (var i = 0; i var item = xml.childNodes.item(i);
var nodeName = item.nodeName;
if (typeof (obj[nodeName]) == "未定義") {
obj[nodeName] = xmlToJson(item);
} else {
if (typeof (obj[nodeName].length) == "undefined") {
var old = obj[nodeName];
obj[節點名稱] = [];
obj[nodeName].push(old);
}
obj[nodeName].push(xmlToJson(item));
}
}
}
回傳obj;
};