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


HTML DOM TableHeader rowSpan属性用法及代码示例


HTML DOM TableHeader rowSpan属性用于设置或返回rowspan属性的值。 HTML中的rowspan属性指定单元格应跨越的行数。

用法:

  • 它返回rowspan属性。
tableheaderObject.rowSpan
  • 它用于设置rowSpan属性。
tableheaderObject.rowSpan = number

属性值:它包含值(即number),该值指定单元格应跨越的行数。

返回值:它返回一个数字值,该值表示单元格应跨越的行数。

范例1:本示例返回一个rowpan属性。



HTML


<!DOCTYPE html>
<html>
  
<head>
    <!-- style to set border -->
    <style>
        table,        
        th,
        td {
            border:1px solid black;
        }
    </style>
</head>
  
<body>
    <h2>GeeksforGeeks</h2>
  
    <b>DOM TableHeader rowSpan property</b>
    <table>
        <tr>
            <th id="headerID" rowspan="3"
                abbr="GeeksforGeeks">
            Username
            </th>
        </tr>
  
        <tr>
            <td>geeks</td>
        </tr>
    </table>
    <br>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="paraID" style="font-size:25px;color:green">
    </p>
  
    <!-- Script to access th element -->
    <script>
        function myGeeks() {
            var tab = document.getElementById("headerID").rowSpan;
            document.getElementById("paraID").innerHTML = tab;
        }
    </script>
</body>
  
</html>

输出:

范例2:下面的代码用于设置rowSpan属性。

HTML


<!DOCTYPE html>
<html>
  
<head>
    <!-- style to set border -->
    <style>
        table,        
        th,
        td {
            border:1px solid black;
        }
    </style>
</head>
  
<body>
  
    <h2>GeeksforGeeks</h2>
  
    <b>DOM TableHeader rowSpan Property</b>
    <table>
        <tr>
            <th id="headerID" rowspan="3"
                abbr="GeeksforGeeks">
             Username
            </th>
        </tr>
        <tr>
            <td>geeks</td>
        </tr>
    </table>
    <br>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="paraID" style="font-size:20px;color:green">
    </p>
  
    <!-- script to access th element -->
    <script>
        function myGeeks() {
            var tab = 
            document.getElementById("headerID").rowSpan = "2";
            document.getElementById("paraID").innerHTML 
            = "The value of the rowspan attribute was changed to:" + tab;
        }
    </script>
</body>
  
</html>

输出

相关用法


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