我有一个向表格添加一行的按钮。该表在点击时是可编辑的(类似于在此处找到的一个:http ://www.9lessons.info/2011/03/live-table-edit-with-jquery-and-ajax.html )但是,我得到了我的表数据从数据库。每个<td>
都有一个与数据库中的字段名称对应的data-field
属性。<td>'s
现在,为了使添加的表格行像其他行一样可编辑,我需要在其正上方的单元格<td>'s
data-field
中标记 。data-field
我尝试了几种不同的方法,但总是不够用。这是我的添加行脚本:
<script type="text/javascript">
/*
Add a new table row to the bottom of the table
*/
$(document).ready(function()
{
$(".add").click(function()
{
$("#table").each(function()
{
var $table = $(this);
var id=$('#table tr:last').attr('id');
var $tr = $("#table").children('tr');
var $th = $(this).closest('table').find('th').eq($(this).index());
// Number of td's in the last table row
var n = $('tr:last td', this).length;
var tds = '<tr class="edit_tr" id="' + id++ + '">';
for(var i = 0; i < n; i++)
{
tds += '<td class="edit_td"><input type="text" class="editbox" id="' +
id + '" data-field="' + $th + '"/> </td>';
console.log($th);
}
tds += '</tr>';
//console.log(tds);
if($('tbody', this).length > 0)
{
$('tbody', this).append(tds);
}else {
$(this).append(tds);
}
});
});
});
</script>
现在,请注意var $th = $(this).closest('table').find('th').eq($(this).index());
。这是我得到的最接近的。但是,我不想通过th
. 我想通过数据字段访问。有任何想法吗?