1
如何獲得使用E4X的XML文檔中的名稱空間列表?E4X:列出文檔命名空間?
如何獲得使用E4X的XML文檔中的名稱空間列表?E4X:列出文檔命名空間?
使用namespaceDeclarations() method獲得命名空間的數組:
var bar = new XML('<html:div xmlns:html="about:html"><p></p></html:div>');
bar.namespaceDeclarations().toString(); //about:html
參考
會這樣幫助
? http://stackoverflow.com/questions/922668/e4x-grab-nodes-with-namespaces –
此外,這將有所幫助:http://stackoverflow.com/questions/8080947/xml-namespaces-and-e4x –