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

js-如何用JavaScript操作table中tr中td的值?

編輯:編程綜合問答
如何用JavaScript操作table中tr中td的值?

如何用JavaScript操作table中tr中td的值?
如何用JavaScript操作table中tr中td的值?
如何用JavaScript操作table中tr中td的值?

最佳回答:


 <html>
    <head>
        <title>
            修改td中的值
        </title>
    </head>
    <body>
        <table id="myTable" width="400px" border="1px solid #CCC">
            <tr>
                <td height="50px" width="25%">
                1,1</td>
                <td height="50px" width="25%">
                1,2</td>
                <td height="50px" width="25%">
                1,3</td>
                <td height="50px" width="25%">
                1,4</td>
            </tr>
            <tr>
                <td height="50px" width="25%">
                2,1</td>
                <td height="50px" width="25%">
                2,2</td>
                <td height="50px" width="25%">
                2,3</td>
                <td height="50px" width="25%">
                2,4</td>
            </tr>
            <tr>
                <td height="50px" width="25%">
                3,1</td>
                <td height="50px" width="25%">
                3,2</td>
                <td height="50px" width="25%">
                3,3</td>
                <td height="50px" width="25%">
                3,4</td>
            </tr>
        </table>

        <br>

        <hr>
        <br>
        <input type="text" size="20" id="inputText">
        <input type="button" value="修改(3,3)td中的值" onclick="updateValue('inputText',2,2);"
    </body>
    <script>
        function updateValue(textId,row,col){
            table = document.getElementById('myTable');
            table.rows[row].cells[col].firstChild.nodeValue = document.getElementById(textId).value;
        }
    </script>
</html>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved