我正在使用JS / Jquery按表动态添加行。这是我在网上找到的模板:
<table id="tblCustomers" cellpadding="0" cellspacing="0" border="1">
<thead>
<tr>
<th>Name</th>
<th>Country</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<td><input type="text" id="txtName" /></td>
<td><input type="text" id="txtCountry" /></td>
<td><input type="button" onclick="Add()" value="Add" /></td>
</tr>
</tfoot>
</table>
从我收集的内容来看,为了确保在Post上传递实际的单元格内容值,我需要将它们分配给隐藏字段。
如何阅读单元格的实际内容。 我试过了:
$("#submitForm").click(function(){
alert("submit Clicked");
$('#tblCustomers tfoot td').each(function() {
var cellText = $(this).html();
});
});
你能让我知道我需要做些什么来获得细胞的实际价值。
我需要创建一个动态表/项列表,我想将项目列表发送回服务器进行处理。有点像购买清单等。
BTW:后端是Django 2.0
感谢您的帮助。 Tanmay