1
我試圖使用:https://github.com/markcell/jquery-tabledit/blob/master/README.md,並設置它的發送數據到表單,不幸的是它當前不包括標識符在表單發佈,將感激任何幫助。jquery-tabledit不發送標識符
我使用的網站上的例子: 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"}']]
}
});
在後的唯一數據是已編輯的字段和行動。任何幫助獲得標識符到帖子的幫助將非常感激。你可以告訴新的這個,
感謝很多答案。你節省了我的時間 –