简单教程
提交运行
代码编辑器:
<p id="demo">单击按钮来显示文档类型名称</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=document.getElementById("demo"); x.innerHTML=document.doctype.name; } </script> <p><strong>注意:</strong>在IE 8和更早的版本,对于HTML和XHTML文档doctype属性返回<em>null</em> ,只在XML文档下工作</p>
运行结果: