<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访问它? 我需要获得“全路径”价值。
答案 0 :(得分:0)
var xml='';
var oParser = new DOMParser();
var oDOM = oParser.parseFromString(xml, "text/xml");
console.log(oDOM.querySelector('rootfile').getAttribute('full-path'));