使用 Javascript 查找上一个和下一个 li

发布于 2024-12-15 08:21:09 字数 961 浏览 2 评论 0原文

我有不确定数量的嵌套 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

将军与妓 2024-12-22 08:21:09

您没有指定您正在使用哪个事件,但它应该是“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/

羁客 2024-12-22 08:21:09

使用 jQuery:

var parentLi = $(e).closest('li');
var previousLi = parentLi.prev()
var nextLi = parentLi.next();

其中 e 是接收放置的元素。

Using jQuery:

var parentLi = $(e).closest('li');
var previousLi = parentLi.prev()
var nextLi = parentLi.next();

Where e is the element receiving the drop.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文