Pregunta

How would I get a list of namespaces in an XML document using E4X?

¿Fue útil?

Solución

Use the namespaceDeclarations() method to get an array of namespaces:

var bar = new XML('<html:div xmlns:html="about:html"><p></p></html:div>');
bar.namespaceDeclarations().toString(); //about:html

References

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top