jQuery - 选择列表中最后一个 LI 的每个 UL

发布于 2024-09-07 20:12:00 字数 791 浏览 4 评论 0原文

我正在尝试格式化我的项目列表,其中 html 如下所示:

<ul class='product_list'>
<li>Item 1
    <ul>
        <li>Item 1.1</li>
        <li>Item 1.2
            <ul>
                <li>Item 1.2.1</li>
                <li>Item 1.2.2
                    <ul>
                        <li>Item 1.2.2.1</li>
                        <li>Item 1.2.2.2</li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>Item 1.3</li>
    </ul>
</li>
<li>Item 2</li>

依此类推,希望您明白,它可以无限次地深入,现在,我需要选择并格式化列表中任何 UL 中每个 LAST LI 的 UL。

你有什么想法吗?我已经被困在这个问题上两天了,当它不起作用时,我想出的所有东西都有一些“但是”。 =/

迈克

I'm trying to format my list of items, where the html goes like this:

<ul class='product_list'>
<li>Item 1
    <ul>
        <li>Item 1.1</li>
        <li>Item 1.2
            <ul>
                <li>Item 1.2.1</li>
                <li>Item 1.2.2
                    <ul>
                        <li>Item 1.2.2.1</li>
                        <li>Item 1.2.2.2</li>
                    </ul>
                </li>
            </ul>
        </li>
        <li>Item 1.3</li>
    </ul>
</li>
<li>Item 2</li>

And so on, hope you get the idea, that it can go deep infinet amout of times and now, I need to select and format UL of every LAST LI in any UL of the list.

Do you have any idea? I've been stuck on this for 2 days now and all that I come up with has some "but", when it does't work. =/

Mike

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

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

发布评论

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

评论(2

感性不性感 2024-09-14 20:12:00

尝试:

$("li:last-child > ul").css("border", "1px solid red");

演示:http://jsfiddle.net/2NVB7/

Try:

$("li:last-child > ul").css("border", "1px solid red");

Demo: http://jsfiddle.net/2NVB7/

回忆追雨的时光 2024-09-14 20:12:00

CSS/jQuery 选择器:li:last-child > ul

请注意,CSS 存在兼容性问题

CSS/jQuery selector: li:last-child > ul

Note that there are compatibility issues with CSS.

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