gpt4 book ai didi

jquery - 根据日期更改带有 JQuery 的 Div 类

转载 作者:太空宇宙 更新时间:2023-11-03 23:48:23 24 4
gpt4 key购买 nike

JQuery 新手,我一辈子都弄不明白。我知道这会很简单。

不能在服务器端执行此操作。

我正在为一位客户开发有关季节性 Yaga 的网站。在入门页面上,每个季节都有 5 个 div。我只希望一个显示取决于任何给定年份的日期。

例如, Spring 是 3 月 1 日至 5 月 31 日(含)。

夏季从那之后开始等等。我还没有得到具体日期。

使用 Foundation 5,所以我将 .hide 附加到每个 div。

因此脚本应该检查日期并从正确季节的 div 中删除 .hide 类。

<div id="winter-panel" class="hide small-12 medium-6 columns">
<div class="panel">
<h3>Winter</h3>
<p>Winter is the water element, a time to flow smoothly and be reflective in our thoughts and in our actions.</p>
<p>Natures energy is at it's lowest at 1/5 and the earth seems quieter as vegetation has gone and animals are hibernating -
we should do the same: slow down, sleep when you can and conserve energy for the lighter months ahead.</p>
<a class="button" href="winter.html">Read more</a>
</div>
</div>

最佳答案

通过获取当前月份,您可以隐藏或显示您的 div..

    $( document ).ready( function() {
var now = new Date();
var currentMonth = now.getMonth();//returns 0-11
//based on month hide or show your div
if( currentMonth > 0 && currentMonth < 5 ) {
$( "#winter-panel").show();
}
else {
$( "#winter-panel" ).hide();
}
});

关于jquery - 根据日期更改带有 JQuery 的 Div 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20949548/

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