为什么空分配不起作用?

时间:2015-12-02 09:12:22

标签: javascript

在此代码中,

    <html>
    <head>
        <meta charset="UTF-8">

        <script>
            window.onload = myfunc;
            function myfunc(){
                window['document'] = null;
                console.log(window['document']);    
            }
        </script>
    </head>
    <body>
        <h1>My First Web Page</h1>
        <p>My first paragraph.</p>
    </body>
</html>

尽管赋值为null,为什么DOM接口window['document']不为空?如下图所示...

enter image description here

1 个答案:

答案 0 :(得分:5)

Window.documentwindow的只读属性。

  

Window.document 只读

     

返回对窗口包含的文档的引用。