如何使用 jQuery 选择特定的
  • 基于特定条件的菜单中的标签
  • 发布于 2024-12-19 10:00:37 字数 396 浏览 1 评论 0原文

    我为此设置了一个 jsFiddle: http://jsfiddle.net/eventide/TAmam/

    我我正在尝试将“addNote”类应用于导航菜单中的特定项目。该类添加了一个图像,但我不知道如何向 jsFiddle 中的内容添加图像(如果可以,请告诉我 - 以及如何做到这一点!)。

    无论如何,我想将该类应用于具有本地链接的“li”标签(到站点域内的页面),因此,使用 jQuery,我需要选择#nav 中的所有“li”元素具有“a”标记,但 href 属性中没有“http”。

    如果有人能帮助我只选择菜单中那些特定的“li”元素,我将不胜感激。谢谢!

    I have a jsFiddle set up for this: http://jsfiddle.net/eventide/TAmam/

    I'm trying to apply the "addNote" class to specific items in a navigation menu. The class adds an image, but I don't know how to add an image to stuff in jsFiddle (please let me know if you can - and how to do it!).

    Anyway, I only want to apply the class to "li" tags with local links (to pages within the site domain), so, using jQuery, I need to select all "li" elements in #nav that have an "a" tag, but do not have "http" in the href attribute.

    I'd appreciate it if anyone can help me out with selecting only those specific "li" elements in the menu. Thanks!

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

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

    发布评论

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

    评论(1

    旧梦荧光笔 2024-12-26 10:00:37

    我想这就是你想要的:

    $("#nav li:has(a:not([href^='http://']))")
    

    I think this is what you want:

    $("#nav li:has(a:not([href^='http://']))")
    
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文