2014-03-05 194 views
0
<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訪問它? 我需要獲得「全路徑」值。XML文檔解析javascript

回答

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

它不工作 – Siddharth

+0

我加載使用SML的HttpRequest – Siddharth

+0

也許你有一個DOM直接從您的請求元素,那麼,你應該嘗試: VAR domXml = answerData; ('root-file')。getAttribute('full-path')); – Nephelococcygia