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"}']]
}
});
ポストのデータのみが編集されたフィールドとアクションです。ポストへの識別子の取得には、最も感謝しています。あなたがこれを初めて知ることができるように、
おかげで多くのことを
<th>
を維持するために持っているようとにかく、あなたは
<td scope="row">2</td>
に
<th scope="row">2</th>
を変更したいが見えます。あなたは私の時間を救った –