读取单元格内容动态JS / Jquery表

时间:2018-04-16 17:53:13

标签: javascript jquery django html5 python-3.x

我正在使用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();    
});
});

然而,我得到的只是返回值:enter image description here

你能让我知道我需要做些什么来获得细胞的实际价值。

我需要创建一个动态表/项列表,我想将项目列表发送回服务器进行处理。有点像购买清单等。

BTW:后端是Django 2.0

感谢您的帮助。 Tanmay

0 个答案:

没有答案