gpt4 book ai didi

jquery - Bootstrap Datetimepicker - 禁用几十年 View 模式

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

当用户多次单击 View 标题时,预期行为是:天 -> 月 -> 年 -> 几十年。我需要禁用几十年 View (附有屏幕截图)。这样做用户无法进一步进入“年” View 模式。

enter image description here

最佳答案

这是一个workaround ,感谢 RomeroMsk。

CSS:

.datepicker-years .picker-switch {
cursor: default !important;
background: inherit !important;
}

JS:

$('#datetimepicker1').datetimepicker({
// your datetimepicker options go here, f.i.:
inline: true,
sideBySide: false,
format : "DD/MMM/YYYY",
maxDate : moment()
}).on('dp.show dp.update', function () {
$(".datepicker-years .picker-switch").removeAttr('title')
//.css('cursor', 'default') <-- this is not needed if the CSS above is used
//.css('background', 'inherit') <-- this is not needed if the CSS above is used
.on('click', function (e) {
e.stopPropagation();
});
});

关于jquery - Bootstrap Datetimepicker - 禁用几十年 View 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35889476/

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