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


HTML embed width用法及代码示例


HTML中的DOM嵌入width属性用于设置或返回width属性的值。 width属性定义嵌入内容的宽度,以像素为单位。

用法:

  • 返回width属性:
    embedObj.width
  • 设置width属性:
    embedObj.width = pixels

属性值:


  • px:指定嵌入内容的宽度(以像素为单位)。

返回值:它返回一个数字以显示嵌入内容的宽度。

例:

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

输出:
在单击按钮之前:

单击按钮后:

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>HTML DOM Embed width 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 idwidth =  
                document.getElementById("embedID").width=400;  
  
                document.getElementById("pid").innerHTML 
                     = idwidth;  
            }  
        </script>  
    </center>  
</body>  
  
</html> 

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM embed width属性支持的浏览器:

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


相关用法


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