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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。