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


HTML IFrame contentWindow用法及代码示例


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

用法:

iframeObject.contentWindow

返回值:它返回由iframe元素生成的参考Window对象。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM iframe contentWindow Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1>GeeksforGeeks</h1> 
  
    <h2>  
        HTML DOM iframe contentWindow 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 red"; 
        } 
    </script> 
</body> 
  
</html>
    输出:
  • 在单击按钮之前:
  • 单击按钮后:

支持的浏览器:IFrame contentWindow属性支持的浏览器如下:

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


相关用法


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