function xmlToJson(xml) {
// Create戻りオブジェクト
var obj = {};
if (xml.nodeType == 1) { // 要素
// 属性を実行します
if (xml.attributes.length > 0) {
obj["@attributes" ] = {};
for (var j = 0; j varattributes = xml.attributes.item(j);
obj["@attributes"][attribute.nodeName] =attribute.nodeValue;
}
}
} else if (xml.nodeType == 3) { // テキスト
obj = xml.nodeValue;
}
// 子を実行します
if (xml.hasChildNodes()) {
for (var i = 0; i var item = xml.childNodes.item(i);
var ノード名 = item.nodeName;
if (typeof (obj[nodeName]) == "未定義") {
obj[nodeName] = xmlToJson(item);
} else {
if (typeof (obj[nodeName].length) == "未定義") {
var old = obj[nodeName];
obj[ノード名] = [];
obj[ノード名].push(old);
}
obj[nodeName].push(xmlToJson(item));
}
}
}
オブジェクトを返します。
};