jquery-tabledit 不发送标识符
Posted
技术标签:
【中文标题】jquery-tabledit 不发送标识符【英文标题】:jquery-tabledit Not sending identifier 【发布时间】:2017-07-17 06:00:20 【问题描述】:我正在尝试使用: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"']]
);
帖子中的唯一数据是已编辑的字段和操作。将标识符放入帖子中的任何帮助将不胜感激。正如你所知道的那样。,
【问题讨论】:
【参考方案1】:我刚遇到同样的问题,但我想通了。您使用的是较旧的示例还是来自其他网站?我通过寻找内联编辑器认出了它,但我再也找不到它了。
无论如何,你想改变
<th scope="row">2</th>
到 <td scope="row">2</td>
看起来你必须在标题中保留<th>
(它应该属于的地方)
【讨论】:
非常感谢您的回答。你节省了我的时间以上是关于jquery-tabledit 不发送标识符的主要内容,如果未能解决你的问题,请参考以下文章