繁体   English   中英

使用 JavaScript 从 HTML 表格中获取特定单元格值

[英]Get a particular cell value from HTML table using JavaScript

我想在按下提交按钮时使用 JavaScript 从 HTML 表格中获取每个单元格值。

如何获取 HTML 表格单元格值?

要从此单元格中获取文本-

<table>
    <tr id="somerow">
        <td>some text</td>            
    </tr>
</table>

你可以用这个——

var Row = document.getElementById("somerow");
var Cells = Row.getElementsByTagName("td");
alert(Cells[0].innerText);
function Vcount() {
var modify = document.getElementById("C_name1").value;
var oTable = document.getElementById('dataTable');
var i;
var rowLength = oTable.rows.length;
for (i = 1; i < rowLength; i++) {
    var oCells = oTable.rows.item(i).cells;
    if (modify == oCells[0].firstChild.data) {
        document.getElementById("Error").innerHTML = "  * duplicate value";
        return false;
        break;
    }

}
var table = document.getElementById("someTableID"); 
var totalRows = document.getElementById("someTableID").rows.length;
var totalCol = 3; // enter the number of columns in the table minus 1 (first column is 0 not 1)
//To display all values
for (var x = 0; x <= totalRows; x++)
  {
  for (var y = 0; y <= totalCol; y++)
    {
    alert(table.rows[x].cells[y].innerHTML;
    }
  }
//To display a single cell value enter in the row number and column number under rows and cells below:
var firstCell = table.rows[0].cells[0].innerHTML;
alert(firstCell);
//Note:  if you use <th> this will be row 0, so your data will start at row 1 col 0

即使单击单元格,您也可以使用 JS 获取单元格值:

.......................

      <head>

        <title>Search students by courses/professors</title>

        <script type="text/javascript">

        function ChangeColor(tableRow, highLight)
        {
           if (highLight){
               tableRow.style.backgroundColor = '00CCCC';
           }

        else{
             tableRow.style.backgroundColor = 'white';
            }   
      }

      function DoNav(theUrl)
      {
      document.location.href = theUrl;
      }
      </script>

    </head>
    <body>

         <table id = "c" width="180" border="1" cellpadding="0" cellspacing="0">

                <% for (Course cs : courses){ %>

                <tr onmouseover="ChangeColor(this, true);" 
                    onmouseout="ChangeColor(this, false);" 
                    onclick="DoNav('http://localhost:8080/Mydata/ComplexSearch/FoundS.jsp?courseId=<%=cs.getCourseId()%>');">

                     <td name = "title" align = "center"><%= cs.getTitle() %></td>

                </tr>
               <%}%>

    ........................
    </body>

我在 JSP 中编写了 HTML 表。 当然是一种类型。 例如Course cs, cs=Course 类型的对象,它有两个属性:id、title。 课程是课程对象的ArrayList。

HTML 表格在每个单元格中显示所有课程标题。 所以该表只有 1 列: Course1 Course2 Course3 ...... 抛开:

onclick="DoNav('http://localhost:8080/Mydata/ComplexSearch/FoundS.jsp?courseId=<%=cs.getCourseId()%>');"

这意味着在用户选择表格单元格后,例如“Course2”,课程标题 - “Course2”将转到 URL 指向用户的页面: http://localhost:8080/Mydata/ComplexSearch/FoundS.jsp “Course2”将到达FoundS.jsp 页面。 “Course2”的标识符是courseId。 要声明将保留 CourseX 的变量 courseId,您可以输入“?” 在 URL 之后和标识符旁边。

我告诉你以防万一你想使用它,因为我搜索了很多,我发现了像我这样的问题。 但是现在我从老师那里知道了,所以我在人们问的地方张贴。

这个例子是有效的。我见过。

只是简单.. #sometime 当更大的表我们不能将 id 添加到每个 tr

     <table>
        <tr>
            <td>some text</td>
            <td>something</td>
        </tr>
        <tr>
            <td>Hello</td>
            <td>Hel</td>
        </tr>
    </table>

    <script>
        var cell = document.getElementsByTagName("td"); 
        var i = 0;
        while(cell[i] != undefined){
            alert(cell[i].innerHTML); //do some alert for test
            i++;
            }//end while
    </script>

也可以使用DOM方式获取单元格值: Cells[0].firstChild.data

在我在http://js-code.blogspot.com/2009/03/how-to-change-html-table-cell-value.html 上的帖子中阅读更多相关信息

<td class="virtualTd" onclick="putThis(this)">my td value </td>

function putThis(control) { 
    alert(control.innerText);
}

我发现这是添加 row 的最简单方法。 令人敬畏的是,即使它包含输入元素,它也不会更改已经存在的表格内容。

row = `<tr><td><input type="text"></td></tr>`
$("#table_body tr:last").after(row) ;

这里#table_body是表体标签的id。

这可能是获取单个单元格值的最简单方法。

document.querySelector("#table").children[0].children[r].children[c].innerText

其中 r 是行索引,c 是列索引

因此,要获取所有单元格数据并将其放入多维数组中:

var tableData = [];  
Array.from(document.querySelector("#table").children[0].children).forEach(function(tr){tableData.push(Array.from(tr.children).map(cell => cell.innerText))}); 
var cell = tableData[1][2];//2nd row, 3rd column

要访问此多维数组中特定单元格的数据,请使用标准语法:array[rowIndex][columnIndex]。

制作一个javascript函数

function addSampleTextInInputBox(message) {
    //set value in input box
    document.getElementById('textInput').value = message + "";
    //or show an alert
    //window.alert(message);
}

然后只需调用您的表格行按钮单击

<td class="center">
    <a class="btn btn-success" onclick="addSampleTextInInputBox('<?php echo $row->message; ?>')" title="Add" data-toggle="tooltip" title="Add">
        <span class="fa fa-plus"></span>
    </a>
</td>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM