如何在另一个列表项上反映排序索引

发布于 2024-11-08 07:41:08 字数 977 浏览 1 评论 0原文

我有两个不同的列表

<ul id="one">
    <li id="num_1">One</li>
    <li id="num_2">two</li>
    <li id="num_3">Three</li>
    <li id="num_4">Four</li>
</ul>
<ul id="two">
    <li id="recordsArray_1">1: First</li>
    <li id="recordsArray_2">2: Second</li>
    <li id="recordsArray_3">3: Third</li>
    <li id="recordsArray_4">4: Fourth</li>
</ul>

,我的 jQuery 代码如下

$(function() {
    $("#two").sortable({ opacity: 0.6, cursor: 'move', update: function() {
    // Do stuffs                                             
}                                 
});

,我想要做的是,当我拖动 #two 中的任何元素时,我想要 #one< 中的相应项目/code> 在我拖动时反映。

举例来说,我将 #recordsArray_3 拖到列表顶部 #two,然后 #num_3 将跟进并放置在列表顶部#one

那么谁能指导我如何链接这两个列表项?

I've two different lists

<ul id="one">
    <li id="num_1">One</li>
    <li id="num_2">two</li>
    <li id="num_3">Three</li>
    <li id="num_4">Four</li>
</ul>
<ul id="two">
    <li id="recordsArray_1">1: First</li>
    <li id="recordsArray_2">2: Second</li>
    <li id="recordsArray_3">3: Third</li>
    <li id="recordsArray_4">4: Fourth</li>
</ul>

I've my jQuery Codes as

$(function() {
    $("#two").sortable({ opacity: 0.6, cursor: 'move', update: function() {
    // Do stuffs                                             
}                                 
});

Here, What I want to do is, as I drag any element in #two, I want the corresponding item in #one to reflect as I drag.

Say for example I drag #recordsArray_3 to top of the list #two, then #num_3 will follow up and be placed on top of the list #one.

So can anyone direct me how to link the two list-items??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文