带间隔的下拉列表中的 Jquery 日期

发布于 2024-08-24 09:38:34 字数 192 浏览 2 评论 0原文

我正在尝试使用 Jquery 以半个月的间隔在下拉列表中显示日期... 因此第一个值将是下个月的 1 号,然后第二个值将是下个月的 15 号,第三个值将是下个月的第一个值,依此类推...

如果今天的日期小于 15 号,那么第一个值将是 15 号当月的。

最好的或更干净的方法是什么......(想要在下拉列表中显示)

谢谢

I am trying to use Jquery to display dates in a dropdown with interval of half month...
so the first value would be the coming month's 1st, then second will be the coming month's 15th and third value would be next to next month's first and so on...

If today date is less than 15th then the first value would be the 15th of current month.

What will be the best or a cleaner way to do this... (want to display in the dropdown)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你げ笑在眉眼 2024-08-31 09:38:34

像这样的东西会起作用:

var date = new Date();
if (date.getDate() == 1){
    date.setDate(1);
} else {
    date.setDate(15);
}
var options = [];
for(var i=0; i<15; i++){
    var year = date.getFullYear(),
        month = date.getMonth(),
        day = date.getDate(),
        out = month+'/'+day+'/'+year;

    options.push('<option value="'+out+'">'+out+'</option>');
    if (day == 1){
        date.setDate(15);
    } else {
        date.setDate(1);
        date.setMonth(month+1);
    }
}
$("#date_select").append(options.join(''));

Html 将是:

<select id="date_select" name="date_select"></select>

Something like this would work:

var date = new Date();
if (date.getDate() == 1){
    date.setDate(1);
} else {
    date.setDate(15);
}
var options = [];
for(var i=0; i<15; i++){
    var year = date.getFullYear(),
        month = date.getMonth(),
        day = date.getDate(),
        out = month+'/'+day+'/'+year;

    options.push('<option value="'+out+'">'+out+'</option>');
    if (day == 1){
        date.setDate(15);
    } else {
        date.setDate(1);
        date.setMonth(month+1);
    }
}
$("#date_select").append(options.join(''));

Html would be:

<select id="date_select" name="date_select"></select>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文