我想在按下提交按钮时使用JavaScript从HTML表中获取每个单元格值。
如何获取HTML表格单元格值?
答案 0 :(得分:39)
从此单元格中获取文本 -
<table>
<tr id="somerow">
<td>some text</td>
</tr>
</table>
你可以使用它 -
var Row = document.getElementById("somerow");
var Cells = Row.getElementsByTagName("td");
alert(Cells[0].innerText);
答案 1 :(得分:5)
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;
}
}
答案 2 :(得分:2)
您还可以使用DOM方式获取单元格值: 的细胞[0] .firstChild.data 强>
在http://js-code.blogspot.com/2009/03/how-to-change-html-table-cell-value.html
的帖子中详细了解相关内容答案 3 :(得分:2)
即使单击单元格,您也可以使用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表。 课程是一种类型。例如,课程cs,cs =课程类型的对象,它有2个属性: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。要声明变量courseId,将保留CourseX,你输入一个“?”在URL之后,标识符旁边。
我告诉过你,万一你会想要使用它,因为我经常搜索它,我发现了像我这样的问题。但是现在我从老师那里找到了,所以我发布了人们问的地方。
这个例子正在运作。我见过。
答案 4 :(得分:2)
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
答案 5 :(得分:1)
只是简单.. #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>
答案 6 :(得分:0)
我发现这是添加行的最简单方法。令人敬畏的是,即使它包含输入元素,它也不会改变已经存在的表内容。
row = `<tr><td><input type="text"></td></tr>`
$("#table_body tr:last").after(row) ;
此处#table_body
是表正文标记的ID。
答案 7 :(得分:0)
这也许是获取单个单元格值的最简单方法。
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]。
答案 8 :(得分:-1)
<td class="virtualTd" onclick="putThis(this)">my td value </td>
function putThis(control) {
alert(control.innerText);
}
答案 9 :(得分:-1)
启用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>