XML文档解析javascript

时间:2014-03-05 13:17:26

标签: javascript xml html5

 <container xmlns="urn:oasis:names:tc:opendocument:xmlns:container" version="1.0">
    <rootfiles>
    <rootfile full-path="OPS/content.opf" media-type="application/oebps-package+xml"/>
    </rootfiles>
    </container>

如何使用Javascript访问它? 我需要获得“全路径”价值。

1 个答案:

答案 0 :(得分:0)

var xml='';
var oParser = new DOMParser();
var oDOM = oParser.parseFromString(xml, "text/xml");
console.log(oDOM.querySelector('rootfile').getAttribute('full-path'));