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


HTML DOM Object hspace屬性用法及代碼示例


HTML DOM Object hspace 屬性用於設置或返回 <object> 元素的 hspace 屬性的值。 hpace 屬性用於指定對象左側和右側的空格數。

用法

  • 它返回 hspace 屬性。

    objObject.hspace;
  • 它設置 hspace 屬性。



    objObject.hspace="pixels";

屬性值:它包含指定對象左側和右側的空格數的數值。

範例1:下麵的示例返回對象 hspace 屬性。

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h2>GeeksForGeeks</h2>
  
        <h2>DOM Object hspace Property</h2>
  
        <p> 
            <object id="myobject" width="180" 
                height="78" hspace="50" data=
"https://media.geeksforgeeks.org/wp-content/uploads/geek-8.png">
            </object> 
            A Good Platform for earning and learning.
        </p>
  
        <br>
  
        <button onclick="Geeks()">
            Click it
        </button>
  
        <p id="gfg" style="color:green;font-size:25px;"></p>
  
    </center>
  
    <script>
        function Geeks() {
  
            // Accessing Object element
            var x = vdocument.getElementById("myobject").hspace;
  
            document.getElementById("gfg").innerHTML = x;
        }
    </script>
</body>
  
</html>

輸出:

範例2:下麵的示例設置 Object hspace 屬性。

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h2>GeeksForGeeks</h2>
  
        <h2>DOM Object hspace Property</h2>
          
        <p> 
            <object id="myobject" width="180" 
                height="78" hspace="50"
                data=
"https://media.geeksforgeeks.org/wp-content/uploads/geek-8.png">
            </object> 
            A Good Platform for earning and learning.
        </p>
        <br>
  
        <button onclick="Geeks()">
            Click it
        </button>
  
        <p id="gfg" style="color:green;font-size:25px;"></p>
  
    </center>
  
    <script>
        function Geeks() {
  
            // Accessing Object element.
            var x = document.getElementById(
                    "myobject").hspace = "15";
  
            document.getElementById("gfg").innerHTML = x;
        }
    </script>
</body>
  
</html>

輸出:

支持的瀏覽器:

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



相關用法


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