gpt4 book ai didi

jquery - DatePicker 作为只读日历

转载 作者:行者123 更新时间:2023-12-01 03:38:09 25 4
gpt4 key购买 nike

我有一个应用程序,其中主要对象具有多个日期间隔(在一个月内)的字段。

我正在寻找用户友好的方式来显示日历上标记的数据,并为周末和节假日提供额外的颜色。

我设法在内联模式下设置 Jquery.ui.DatePicker ..但我找不到一种方法来为其提供不同的数据范围...为周末着色并标记特定日期,例如“现在”和“自定义”假期。

$('.date-pick').datePicker({
inline:true,
language:'en',
dateFormat: 'dd-mm-yy',
});

我尝试setDate ..但找不到设置间隔以及指定颜色或样式的方法。

最佳答案

您可以定位 jQuery UI Datepicker 添加的类来更改颜色。

周末:

.ui-datepicker-week-end, .ui-datepicker-week-end a.ui-state-default { 
color: Red;
}

jQuery UI Datepicker 上周末的标记如下所示:

<td class=" ui-datepicker-week-end " data-handler="selectDay" data-event="click" data-month="0" data-year="2015">
<a class="ui-state-default" href="#">#DAYNUMBER</a>
</td>

对于特定日期和日期范围:

JS

var SelectedDates = {};
SelectedDates[new Date("January 11, 2015")] = new Date("January 11, 2015");
SelectedDates[new Date("January 30, 2015")] = new Date("January 30, 2015");

var startDate = new Date("January 14, 2015");
var endDate = new Date("January 21, 2015");

$("input").datepicker({
inline:true,
language:'en',
dateFormat: 'dd-mm-yy',
beforeShowDay: function(date) {
var holiday = SelectedDates[date];
if (holiday) {
return [true, "holiday", holiday];
}
else if (date >= startDate && date <= endDate) {
return [true, 'holiday-range', holiday];
}
else {
return [true, '', ''];
}
}
});

CSS

.holiday a.ui-state-default {
background-color: Green;
background-image: none;
color: White;
}

.holiday-range a.ui-state-default {
background-color: Purple;
background-image: none;
color: White;
}

DEMO

引用文献:
show weekend
highlight specific dates

关于jquery - DatePicker 作为只读日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27946140/

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