1

我正在尝试从 HTML 表中获取单元格值,以便可以通过调用 PHP 将它们保存到 MySQL 表中。我想使用 JavaScript 而不是 jQuery。

我根据 MySQL 表的 ID 字段给每个 TR 一个不同的 ID。此外,每个 TD 输入单元格都有一个基于 MySQL 表 ID 字段的唯一 ID。不确定我是否需要所有这些,但我使用了它们。

如何获取单元格的值,以便可以将其传递给 PHP 程序(我知道如何编写这个 PHP 代码)以将数据保存到 MySQL 中?我下面的 JavaScript 代码获取了“innerHTML”,但我需要获取单元格值。

例如,如果我有 3 行来自 MySQL 表的数据,字段 id 和 amount,值如下,我如何获取“3”和“1.99”?:

id    amount
-------------
1     100.00
2     9.99
3     1.99

这是表格、提交按钮和 onclick 调用的 PHP/HTML 代码示例:( 这是我的实际代码的一个非常简化的版本,但应该传达这个想法)

<?php
    /* define mysql database connect, query and execute it returning result set into $result, id=integer primary key, is_active=tinyint(0 or 1), amount=decimal(12,2) */
    /* ... */    
    /* output form/table */
    echo "<form id='myform' name='myform' >" ;    
        echo "<table id='mytable' name='mytable'>" ;
            while($row = mysql_fetch_array($result))
            {
                $id                 = $row['id'] ;
                $amount             = $row['amount'] ;                
                $tr_id              = "tr_id_" . trim((string)$id) ;                                                
                $td_id              = "td_id_" . trim((string)$id) ;  
                $td_amount_id       = "td_amount_id_" . trim((string)$id) ;                 
                $input_amount_id    = "input_amount_id_" . trim((string)$id) ;
                echo "<tr id='$tr_id' name='$tr_id'>";
                    echo "<td id='$td_id_account' > $id </td>" ; 
                    echo "<td id='$td_amount_id' > <input type='text' id='$input_amount_id' value=$amount > $amount </td>" ;             
                echo "</tr>";
            }
        echo "</table>";
    echo "</form>" ; 
    /* submit button and onclick call */
    echo "<br />" ;
    echo "<table>";
        echo "<tr>" ;
            echo "<td>";
                echo "<button type='button' " . 'onclick="SubmitTableData(\'' . "mytable" .'\');"' . ">Submit</button>" ;
            echo "</td>" ;
        echo "</tr>";
    echo "</table>";         
?>

这是我的 JavaScript 函数的示例,用于循环遍历 HTML 表的行:

function SubmitTableData(TableID)
{
    var table = document.getElementById(TableID);
    for (var i = 0, row; row = table.rows[i]; i++) 
    {
       // iterate through rows
       for (var j = 0, col; col = row.cells[j]; j++) 
       {
         // iterate through columns
            alert(col.innerHTML);
       }  
       /* call PHP procedure with row's cell values as parameters */
       /* ... */
       break;
    }
} 
4

4 回答 4

3

innerText属性用于td. 这是一个展示如何使用它的小提琴。

HTML

<table>
    <tr>
        <td id="1">Bla</td>
        <td id="2"><input id="txt" />Ble</td>
    </tr>
</table>​

JavaScript

var td = document.getElementById('1');
alert(td.innerText);
var td2 = document.getElementById('2');
alert(td2.innerText);​
于 2012-10-25T18:40:28.387 回答
2

如何从表格中获取单元格值?

更新以解决 Elliots 评论

在我的新演示中查看如何获取单元格值(innerText 和数据值)

在表中,该属性data-value用于存储一些数据(2B、3C、..)。

<table id="t2">    
  <thead>
   <tr id="tr1"><th>Student Name<th>Course</tr> 
  </thead>
  <tbody>
    <tr id="tr2"><td data-value="2B">Bert2  <td>Economics  </tr>
    <tr id="tr3"><td data-value="3C">Clyde3 <td>Chemics    </tr>
    <tr id="tr4"><td data-value="4D">       <td>Digital Art</tr>
    <tr id="tr5"><td data-value="5E">Ernest <td>Ecmoplasma </tr>
  </tbody>
</table> 

使用 jQuery 和正确的选择器,您可以遍历每个单元格:

function eachCell(){
    var cellInnerText = [];
    var cellValue = [];
    var out = document.getElementById("out");
    var out2 = document.getElementById("out2");
    // iterate over each row in table with id t2 in the table-body (tbody)
    $('#t2 tbody tr').each(function(index){     
       // copy the text into an array
       cellInnerText.push($(":first-child", $(this)).text());
       //copy the data-value into an array
       cellValue.push($(":first-child", $(this)).attr('data-value'));
    });
    // show content of both arrays
    out.innerHTML = cellInnerText.join(" | ");
    out2.innerHTML = cellValue.join(" | "); 
}
    
于 2012-10-25T19:36:40.043 回答
0

使用某种模式在您的输入上放置 ID。例如,行在<input type="text" id="input_0_0" name="whatever" />哪里0,第二个0是列,然后是您的警报类型

v = document.getElementById('input_'+row+'_'+col).value;

它应该可以帮助你现在开始滚动

于 2012-10-25T18:38:04.710 回答
0

提醒表格第一行中第一个单元格的 innerHTML

<!DOCTYPE html>
<html>
<head>
<style>
table, td {
    border: 1px solid black;
}
</style>
</head>
<body>

<p>Click the button to alert the innerHTML of the first cell (td element with index 0) in the table's first row.</p>

<table id="myTable">
  <tr>
    <td>Row1 cell1</td>
    <td>Row1 cell2</td>
  </tr>
  <tr>
    <td>Row2 cell1</td>
    <td>Row2 cell2</td>
  </tr>
  <tr>
    <td>Row3 cell1</td>
    <td>Row3 cell2</td>
  </tr>
</table>
<br> 

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
    alert(document.getElementById("myTable").rows[0].cells[0].innerHTML);
}
</script>

</body>
</html> 
于 2016-12-06T17:10:09.750 回答