如何在另一个列表项上反映排序索引
我有两个不同的列表
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论