gpt4 book ai didi

javascript - 检查日期是否在 11 月 1 日到 3 月 1 日之间,如果是,则执行某些操作

转载 作者:行者123 更新时间:2023-12-02 19:09:18 26 4
gpt4 key购买 nike

我想在 JavaScript 中检查当前日期是否在 11 月 1 日和 3 月 1 日之间,如果是,则执行某些操作。

这是我当前的代码:

var today = new Date();
if (today.getMonth() >= 10 && today.getMonth() < 2) {
$(document).ready( function(){
$.fn.test();
});
}

最佳答案

你可以这样做:

var today = new Date();
if (today.getMonth() >= 10 || today.getMonth() < 2) {
// ... do stuff
}

关于javascript - 检查日期是否在 11 月 1 日到 3 月 1 日之间,如果是,则执行某些操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13977376/

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