gpt4 book ai didi

javascript -
在 div 之间

转载 作者:行者123 更新时间:2023-11-30 18:33:45 25 4
gpt4 key购买 nike

我会根据时间一个一个地显示 div。

我用 jquery 和

$("#section_"+index).show();

我的 div 有这样的 id:section_1、section_2、section_3 等

我有 var currentSection,它是显示的最后一个的 ID。现在我想要在显示的最后一个和前一个之间有一个 hr(水平标尺)。如果它显示下一个,则应删除旧小时并显示新小时。

这可以用 jquery 来完成吗?

最佳答案

在您的 CSS 中,添加:

.latest {
border-top: 1px solid #888;
}

在您的 JS 中,将您的显示语句更改为:

$('.latest').removeClass('latest');
$("#section_"+index).addClass('latest').show();

关于javascript - <hr> 在 div 之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8869777/

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