gpt4 book ai didi

jquery 显示 :block not working correclty when more than 2 divs

转载 作者:行者123 更新时间:2023-11-28 13:08:19 24 4
gpt4 key购买 nike

我有 3 个简单的按钮,3 个简单的 div。我需要这些 div 根据按钮点击在彼此之间切换。这很好用。

问题:在第一页加载后,最后一个 div(示例文本 3)可见,而不是第一个(示例文本 1)。只有第一个 div 设置为显示: block 。其余设置为显示:无。

javascript:

<script type="text/javascript">
$(window).load(function() {
$(document).ready(function() {
$('.content-switch').hide().eq($('.buttons a.active').index()).fadeIn("slow");
});
$('.buttons a').click(function() {
$(".content-switch").eq($(this).index()).fadeIn("slow")
.siblings('.content-switch').fadeOut("fast");
});
});
</script>

html:

<body>
<div class="buttons">
<a href="#" id="button1">Button 1</a>
<a href="#" id="button2">Button 2</a>
<a href="#" id="button2">Button 3</a>
</div>

<div class="buts" id="buts">
<div style="display: block;position:absolute" class="content-switch" id="but1">
<p>sample text 1</p>
</div>
<div style="display: none;position:absolute" class="content-switch" id="but2">
<p>sample text 2</p>
</div>
<div style="display: none;position:absolute" class="content-switch" id="but2">
<p>sample text 3</p>
</div>
</div>
</body>

最佳答案

改变:

.eq($('.buttons a.active').index())

到:

.eq(0)

所以你有:

$('.content-switch').hide().eq(0).fadeIn("slow");
$('.buttons a').click(function () {
$(".content-switch").eq($(this).index()).fadeIn("slow")
.siblings('.content-switch').fadeOut("fast");
});

jsFiddle example

$('.buttons a.active').index() 返回 -1 因为没有 .buttons a.active元素,这就是第三个 div 显示的原因。

另一种解决方案是在第一个 anchor 上放置一个事件类并使用您的原始代码:

<a href="#" id="button1" class="active">Button 1</a>

jsFiddle example

关于jquery 显示 :block not working correclty when more than 2 divs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19684149/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com