根据活动类通过jquery替换部分类名
我有一个包含三个 li 类的 ul 菜单:.1-is-on、.2-is-off、.3-is-off。
无论哪个 li 带有类 .active,都应显示类名称的“on”部分。默认情况下,在页面加载时,1-is-on 已分配给它 .active。当我点击 2-is-off .active 时,移动到 2-is-off 并留下 1-is-on,这很棒。
由于 .active 刚刚移动,我希望 .active 现在所在的 li 执行两件事: 1. 将“关”部分替换为“开” 2. 将兄弟 li 中的其他“on”替换为“off”
jQuery:
$(function() {
$("ul.menu li").bind('click',function() {
var xxx = $(this).siblings('li:not(.active)')
if($(this).hasClass('active')) {
$(this).attr("class",this.className.replace('off','on'));
$(xxx).attr("class",xxx.className.replace('on','off'));
}
});
});
HTML:
<ul class="menu">
<li class="1-is-on active">1</li>
<li class="2-is-off">2</li>
<li class="3-is-off">3</li>
</ul>
我希望这只是我错过的一些小东西,但它让我发疯!
I have a ul menu with three li classes: .1-is-on, .2-is-off, .3-is-off.
Whichever li with the class .active, should show the "on" part of the class name. By default on page load, 1-is-on has .active assigned to it. When I click on 2-is-off .active moves to 2-is-off and leaves 1-is-on, which is great.
As the .active just moved, I want the li where .active is on now to do two things:
1. Replace the "off" part with "on"
2. Replace other "on" from sibling li's with "off"
jQuery:
$(function() {
$("ul.menu li").bind('click',function() {
var xxx = $(this).siblings('li:not(.active)')
if($(this).hasClass('active')) {
$(this).attr("class",this.className.replace('off','on'));
$(xxx).attr("class",xxx.className.replace('on','off'));
}
});
});
HTML:
<ul class="menu">
<li class="1-is-on active">1</li>
<li class="2-is-off">2</li>
<li class="3-is-off">3</li>
</ul>
I hope it's just something small I missed but it's driving me crazy!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会将被点击元素的所有同级元素的
on
替换为off
,然后将被点击元素的off
替换为on
元素。然后,它将active
类添加到单击的元素中,并将其从所有其他元素中删除。您可以在此处查看此示例。
This replaces
on
withoff
for all the siblings of the clicked element, then replacesoff
withon
for the clicked element. It then adds theactive
class to the clicked element and removes it from all others.You can see an example of this here.