xml文件如下:
<?xml version="1.0" encoding="utf-8" ?>
<Root>
<Parent>
<Item>
<ID>01</ID>
<Name>kingtiger</Name>
</Item>
<Item>
<ID>02</ID>
<Name>kingtiger</Name>
</Item>
</Parent>
</Root>
前台对XML操作代码
$("#btnTJ").bind("click", function () {
$.get("XMLFile.xml", function (data) {
var xml = data.xml;
var json = $.xml2json(xml);
alert(json);
});
});
注意:方法xml2json运用了第三方js文件,它是jquery.xml2json.js