当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML IFrame contentDocument用法及代码示例


HTML DOM中的IFrame contentDocument属性用于返回由frame或iframe元素生成的文档对象。可以在宿主窗口中使用它来访问属于frame或iframe元素的文档对象。

用法:

iframeObject.contentDocument 

返回值:它返回文档对象的引用。如果没有可用的对象,则返回null。


例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM iframe contentDocument Property  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksforGeeks</h1>  
  
    <h2>  
        HTML DOM iframe contentDocument Property  
    </h2>  
  
    <iframe src="https://ide.geeksforgeeks.org/index.php"
                id="GFG" height="200" width="400">  
    </iframe>  
      
    <br><br>  
      
    <button onclick="Geeks()"> 
        Submit 
    </button>  
  
    <script>  
        function Geeks() {  
            var iframeID = document.getElementById("GFG");  
              
            var iframeCW = (iframeID.contentWindow 
                    || iframeID.contentDocument); 
              
            if (iframeCW.document)iframeCW = iframeCW.document; 
                iframeCW.body.style.border = "5px solid black"; 
        }  
    </script>  
</body>  
  
</html>
  • 在单击按钮之前:
  • 单击按钮后:

支持的浏览器:下面列出了HTML DOM IFrame contentDocument属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Safari
  • Opera


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM IFrame contentDocument Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。