gpt4 book ai didi

javascript - 如何将日期显示为选择标签(仅一周中的一天和一个月中的日期)

转载 作者:行者123 更新时间:2023-11-28 06:45:17 26 4
gpt4 key购买 nike

我是 javascript 或 jQuery 新手,我正在尝试在我的网站上放置一个日期选择器,并且我能够放置一个带有日历的日期选择器,但我需要它没有日历并作为选择框。

check the example image

知道如何用 javascript 或 jQuery 做到这一点吗?

谢谢

最佳答案

您可能无法修改日期选择器来执行此操作(我很乐意承认任何人证明了这一点),但您可以轻松地将日期添加到标准选择控件。

在此代码中,我使用了 datepicker UI 中的 formatDate,因此您需要包含 jQuery UI,或者至少包含 datepicker 组件,才能使其正常工作。

以下示例将从当天开始添加 10 天到 ID 为“mySelect”的 select 元素。

$(function () {
var today = new Date();
var date = new Date();

for (x = 0; x <= 9; x++) {
date.setDate(today.getDate() + x);
textDate = $.datepicker.formatDate('D, dd-M', date);
$('#mySelect')
.append($("<option></option>")
.attr("value", textDate)
.text(textDate));
}
});

关于javascript - 如何将日期显示为选择标签(仅一周中的一天和一个月中的日期),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33461401/

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