使用 Javascript 查找上一个和下一个 li
我有不确定数量的嵌套 ul 和 li 标签,例如:
<ul>
<li>5
<ul>
<li>2
<ul>
<li>1
</li>
<li>4
<ul>
<li>3
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>7
<ul>
<li>9
<ul>
<li>14
<li>
</ul>
<li>11
</li>
</ul>
</li>
</ul>
我正在使用 Kendo ui treeview,它返回我删除 l 的元素(它可能是 li 内的元素,因为每个元素都有一些跨度)。
我需要的是通过 DOM 和 Javascript 知道上一个和下一个 li 来保存元素的新顺序。
有人可以帮忙吗?
I have an uncertain amount of nested ul and li tags like:
<ul>
<li>5
<ul>
<li>2
<ul>
<li>1
</li>
<li>4
<ul>
<li>3
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>7
<ul>
<li>9
<ul>
<li>14
<li>
</ul>
<li>11
</li>
</ul>
</li>
</ul>
I'm using Kendo ui treeview and it returns me the element where the l was dropped (it might be a element inside the li because I have some spans in each one).
What I need is to know the previous and next li through DOM and Javascript to save the new order of elements.
Can anyone help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有指定您正在使用哪个事件,但它应该是“dragend”。这样,您应该能够检测到父 li,然后对其所有子项进行重新排序。
在这里看看这个小提琴。这更接近您正在寻找的东西吗?
http://jsfiddle.net/burkeholland/CrRUz/
You didn't specify which event you were using, but it should be "dragend". That way you should be able to detect the parent li and then just get all of it's children to reorder.
Check out this fiddle here. Is this closer to what you are looking for?
http://jsfiddle.net/burkeholland/CrRUz/
使用 jQuery:
其中
e
是接收放置的元素。Using jQuery:
Where
e
is the element receiving the drop.