无法将类添加到 Jquery 手风琴中的活动子 li

发布于 2024-09-05 23:11:42 字数 317 浏览 2 评论 0原文

我正在使用 Jquery Accordion,每个部分中都包含一个 UL,但我不知道如何添加一个类来指示活动链接。

我已经搜索了我的头,但我能找到的唯一东西不适用于手风琴:

$(document).ready(function(){
  var path = location.pathname.substring(1);
  if ( path )
    $('#accordion1 a[href$="' + path + '"]').attr('class', 'activelink');
});

请帮忙,因为我很快就会秃头!

I am using Jquery Accordion with a UL contained within each section and I cant figure out how to add a class to indicate the active link.

I have searched my head-off but the only thing I can find doesnt work with the Accordion:

$(document).ready(function(){
  var path = location.pathname.substring(1);
  if ( path )
    $('#accordion1 a[href$="' + path + '"]').attr('class', 'activelink');
});

Please help, as I am premeturely going bald!

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

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

发布评论

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

评论(1

还如梦归 2024-09-12 23:11:42

为什么不使用addClass

$('#accordion1 a[href$="' + path + '"]').addClass('activelink');

Why not use addClass?

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