Jquery addClass 到选项卡
我的页面中有这样的链接(导航选项卡):
<body>
<div id="nav">
<a href="1" class="active">First link</a>
<a href="2" >Second link</a>
<a href="3" >Third link</a>
</div>
</body>
并且我无法弄清楚为什么我的 jquery 脚本无法将单击的链接的类更改为活动状态并从其他链接中删除任何类。
I have links (navigation tabs) in my page like this:
<body>
<div id="nav">
<a href="1" class="active">First link</a>
<a href="2" >Second link</a>
<a href="3" >Third link</a>
</div>
</body>
and I can't figure out why my jquery script doesn't work to change the class of the clicked link to active and to remove any class from other links.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你会想要这样的东西:
You'll want something like: