HTML - DOM 文档实现属性



HTML DOM 文档的 **implementation** 属性返回与当前文档关联的 DOMImplementation 对象。

语法

document.implementation;

返回值

它返回文档的实现对象。

HTML DOM 文档“implementation”属性示例

以下是一些此属性的示例。

检查 DOM 1.0 功能

以下示例返回此文档是否具有 DOM 1.0 功能

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM document implementation Property
    </title>
</head>
<body>
    <p>
        Click to know if this document 
        has the feature DOM 1.0
    </p>
    <button onclick="fun()">Click me</button>
    <p id="imp"></p>
    <script>
        function fun() {
            let x = document.implementation.hasFeature("DOM", "1.0");
            document.getElementById("imp").innerHTML = x;
        }
    </script>
</body>
</html>

检查 Noodles 功能

以下示例返回此文档是否具有 Noodles 功能

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM document implementation Property
    </title>
</head>
<body>
    <p>
        Click to know if this document
        has the feature Noodles
    </p>
    <button onclick="fun()">Click me</button>
    <p id="imp"></p>
    <script>
        function fun() {
            let x = document.implementation.hasFeature("Noodles", "1.0");
            document.getElementById("imp").innerHTML = x;
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
implementation 是 1 是 12 是 1 是 1 是 12.1
html_dom_document_reference.htm
广告