我正在尝试使用:https://github.com/markcell/jquery-tabledit/blob/master/README.md,并对其进行了设置,以便将其发送到表单,但不幸的是,当前它不在表单发布中包含标识符,对于任何帮助,我们将不胜感激。
我正在网站上使用示例:
HTML代码:
<table class="table table-striped table-bordered" id="example">
<caption>
Click the table cells to edit.
</caption>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
$('#example').Tabledit({
url: 'example.php',
editButton: false,
removeButton: false,
columns: {
identifier: [0, 'id'],
editable: [[1, 'First Name'],[2, 'Last Name'],[3, 'Username', '{"1": "@mdo", "2": "@fat", "3": "@twitter"}']]
}
});
帖子中唯一的数据是已编辑的字段和操作。将标识符带入帖子的任何帮助将不胜感激。如您所知,
最佳答案
我只是遇到了同样的问题,但我发现了。您使用的是旧示例还是其他网站的示例?我从寻找内联编辑器中识别出它,但是我再也找不到它。
无论如何,你想改变<th scope="row">2</th>
至<td scope="row">2</td>
看来您必须将<th>
保留在标题中(应该属于该标题)
关于javascript - jquery-tabledit不发送标识符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42471924/