JavaScript 参考手册
HTML DOM namespaceURI 属性
返回 XHTML 文档命名空间的 URI
源代码:
点击运行 »
<p id="demo">单击按钮获得文档的名称空间的URI</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var x = document.getElementById("demo"); x.innerHTML = document.documentElement.namespaceURI; } </script> <p><strong>注意:</strong> Internet Explorer 8 及之前版本不支持namespaceURI属性。</p>
运行结果:
点击运行 »