程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> javascript-如何用JavaScript獲取table中的tr

javascript-如何用JavaScript獲取table中的tr

編輯:編程綜合問答
如何用JavaScript獲取table中的tr
 <!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
    window.onload=function(){
        var thisTable = document.getElementById("thisTable");
        var tbody = thisTable.children;
        //console.log(tbody);
        var trs = tbody.children;
        for(var i=0;trs.length;i++){
            console.log(trs[i]);
        }
    }
</script>
</head>
<body>
    <table id="thisTable">
        <tr>
            <td>id</td>
            <td>name</td>
            <td>age</td>
        </tr>
        <tr>
            <td>001</td>
            <td>Laowang</td>
            <td>10</td>
        </tr>
        <tr>
            <td>002</td>
            <td>Yan</td>
            <td>9</td>
        </tr>
    </table>
</body>
</html>

最佳回答:


thisTable.tbodies[0].rows[0].cells[0]獲取到的是表格主體第一行第一個單元格

u013179958
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved