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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。