我一直在创建一个站点,现在正在处理它的管理部分,以便可以轻松管理用户,轻松修改文章等。我想使用 jeditable 以便管理员非常易于使用。
JEditable 的一部分正在工作(p 标签正在成为输入)但是我无法通过 ajax 请求发送产品的 id。
这是我目前拥有的 html 代码(由 php 生成):
<table class="admin_list">
<tr>
<th style="width: 110px;">First Name</th>
<th style="width: 110px;">Last Name</th>
<th style="width: 100px;">Date of Birth</th>
<th style="width: 200px;">Email</th>
<th style="width: 140px;">Address</th>
<th style="width: 112px;">Postal Code</th>
<th style="width: 112px;">Town</th>
<th style="width: 120px;">Country</th>
<th style="width: 115px;">Login</th>
<th style="width: 42px;">Action</th>
</tr>
<tr class="2">
<td><p class="editable">Another</p></td>
<td><p class="editable">User</p></td>
<td><p class="editable">11/11/1911</p></td>
<td><p class="editable">user@email.com</p></td>
<td><p class="editable">Address</p></td>
<td><p class="editable">56130</p></td>
<td><p class="editable">Town</p></td>
<td><p class="editable">2</p></td>
<td><p class="editable">bob</p></td>
<td>
<a href="http://localhost/monline/private_html/musiconline/?delete/user/2">D</a>
<a href="">U</a>
<a href="">D</a>
</td>
</tr>
<tr class="1">
<td><p class="editable">Daniel</p></td>
<td><p class="editable">Lucas</p></td>
<td><p class="editable">10/04/1990</p></td>
<td><p class="editable">dan@email.com</p></td>
<td><p class="editable">myAddress</p></td>
<td><p class="editable">12345</p></td>
<td><p class="editable">myTown</p></td>
<td><p class="editable">8</p></td>
<td><p class="editable">dan</p></td>
<td>
<a href="http://localhost/monline/private_html/musiconline/?delete/user/1">D</a>
<a href="">U</a>
<a href="">D</a>
</td>
</tr>
</table>
<input type="text" class="edit_id" value="" />
这是我写的jquery:
$( function() {
$('.admin_list tr').hover( function() {
$('.edit_id').attr( 'value', $(this).attr('class') );
});
$('.editable').editable("http://localhost/monline/private_html/musiconline/?admin/edit/users/" + $('.edit_id').attr('value'), {
indicator : 'Saving...',
onblur : 'submit',
method : 'PUT'
});
});
正如您所看到的,当鼠标悬停时我正在获取当前行的 ID(我想避免这种情况),但是当我提交页面时,ID 没有在 jeditable url 中设置。
有谁知道如何排序,因为我想为管理面板使用就地编辑器?
作为一个可选请求,我如何获得围绕已单击输入的 tr 类?我已经尝试过 $(this).parent().parent().attr('class')
谢谢丹