JavaScript 参考手册
HTML DOM implementation 属性
返回处理该文档的 DOMImplementation 对象
源代码:
点击运行 »
<p id="demo">单击按钮来检查这个文件是否有功能HTML DOM 1.0</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var imp = document.implementation; var x = document.getElementById("demo"); x.innerHTML = imp.hasFeature("HTML", "1.0"); } </script>
运行结果:
点击运行 »