gpt4 book ai didi

javascript - 使用 jquery 获取 Id 以进行 jeditable

转载 作者:行者123 更新时间:2023-11-28 10:01:19 26 4
gpt4 key购买 nike

我一直在制作一个网站,现在正在研究它的管理部分,以便可以轻松管理用户,轻松修改文章等。我想使用 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')

谢谢丹

最佳答案

您尝试过吗(没有悬停功能, $(this).closest('tr').attr('value') 应该指向相对的 <tr> )

 $('.editable').editable("http://localhost/monline/private_html/musiconline/?admin/edit/users/" + $(this).closest('tr').attr('value'), {
indicator : 'Saving...',
onblur : 'submit',
method : 'PUT'
});

关于javascript - 使用 jquery 获取 Id 以进行 jeditable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9164006/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com