當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。