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


HTML TableData cellIndex用法及代码示例


TableData cellIndex属性用于返回表格行的单元格集合中单元格的位置。

用法:

  • 它返回cellIndex属性。
    tabledataObject.cellIndex 

返回值:它返回一个数值,该数值代表表格行的单元格集合中单元格的位置


例:

<!DOCTYPE html>  
<html>  
      
<head>  
    <style>  
        table, th, td {  
            border:1px solid green;  
  
        }  
    </style>  
</head>  
  
<body>  
  
    <h1>  
        GeeksForGeeks  
    </h1>  
          
    <h2>HTML DOM TableData cellIndex Property</h2>  
    <p>  
        Click on the row to get the cell index of the TableData 
    </p> 
    <table>  
        <tr>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
            <td>Geeks</td>  
            <td id = "GFG" onclick="myGeeks(this)">For</td>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td> 
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
            <td id = "GFG" onclick="myGeeks(this)">For</td>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
            <td id = "GFG" onclick="myGeeks(this)">For</td>  
            <td id = "GFG" onclick="myGeeks(this)">Geeks</td>  
        </tr>  
    </table>  
  
    <p id = "sudo"></p> 
  
    <script>  
    function myGeeks(x) { 
        alert("cell index is:" + x.cellIndex); 
} 
</script> 
    </script>  
</body>  
  
</html>

输出:
在单击“表格”单元格之前:

单击“表格”单元格后:

支持的浏览器:下面列出了DOM TableData cellIndex属性支持的浏览器:

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


相关用法


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