fmpq.com
源代码:
点击运行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <body> <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> </body> </html>
运行结果