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


HTML embed height用法及代碼示例


HTML DOM中的embed height屬性用於設置或返回height屬性的值。 height屬性以像素為單位定義嵌入內容的高度。

用法:

  • 返回height屬性:
    embedObj.height
  • 設置height屬性:
    embedObj.height = pixels

屬性值:

  • px:指定嵌入內容的高度(以像素為單位)。

返回值:它返回一個數字來顯示嵌入內容的高度。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Embed height Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green">  
            GeeksforGeeks  
        </h1> 
  
        <embed id="embedID" height="400"
            src="https://ide.geeksforgeeks.org"> 
        <br> 
          
        <button onclick="GFGfun()"> 
            Try it 
        </button> 
  
        <p id="pid"></p> 
  
        <script> 
            function GFGfun() { 
                var idheight =  
                document.getElementById("embedID").height; 
                  
                document.getElementById("pid").innerHTML 
                        = idheight; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
在點擊按鈕之前:

單擊按鈕後:

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Embed height Property 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green">  
            GeeksforGeeks  
        </h1> 
  
        <embed id="embedID"
            src="https://ide.geeksforgeeks.org"> 
        <br> 
  
        <button onclick="GFGfun()"> 
            Try it 
        </button> 
  
        <p id="pid"></p> 
  
        <script> 
            function GFGfun() { 
                var idheight =  
                document.getElementById("embedID").height 
                        = 400; 
                  
                document.getElementById("pid").innerHTML 
                        = idheight; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:DOM embed height屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | DOM embed height property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。