无法将类添加到 Jquery 手风琴中的活动子 li
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用
addClass
?Why not use
addClass
?