在我的 nodejs express 项目中,我的应用程序中有一个动态表,我可以在其中添加或删除行,用户可以在单元格内输入值,现在我想提取这个值,但不知道从表中提取这个值后如何插入他们进入MySQL数据库
注意如果可能我不想使用 jquery
表格
function addRow() {
var table = document.getElementById("cargoTable");
var row = table.insertRow(-1);
var cell1 = row.insertCell(0);
var cell2 = row.insertCell(1);
var cell3 = row.insertCell(2);
var cell4 = row.insertCell(3);
var cell5 = row.insertCell(4);
var cell6 = row.insertCell(5);
var cell7 = row.insertCell(6);
var cell8 = row.insertCell(7);
var cell9 = row.insertCell(8);
cell1.innerHTML = '<label onclick="deleteRow(this)" style="cursor:pointer">-</label>';
cell2.innerHTML = '<input class="w3-input" type="text">';
cell3.innerHTML = '<input class="w3-input" type="text">';
cell4.innerHTML = '<input class="w3-input" type="text">';
cell5.innerHTML = '<input class="w3-input" type="text">';
cell6.innerHTML = '<input class="w3-input" type="text">';
cell7.innerHTML = '<input class="w3-input" type="text">';
cell8.innerHTML = '<input class="w3-input" type="text">';
cell9.innerHTML = '<input class="w3-input" type="text">';
}
function deleteRow(r) {
var i = r.parentNode.parentNode.parentNode.rowIndex;
document.getElementById("cargoTable").deleteRow(i);
}
<table class="w3-table w3-hoverable w3-bordered w3-card">
<thead>
<td onclick="addRow()" style="cursor:pointer">+</td>
<td>Comodity</td>
<td>Marks</td>
<td>Description</td>
<td>Pkg.No</td>
<td>Pkg.Kg</td>
<td>Total Bags</td>
<td>Total Weigh</td>
<td>Remarks</td>
</thead>
<tbody id="cargoTable"></tbody>
</table>
墨色风雨
元芳怎么了
相关分类