- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 amsul 日期时间选择器 ( https://amsul.ca/pickadate.js/date/ ),如果您在预览中看到今天的日期以绿色突出显示。现在,如果您将日历移到下个月或上个月。每个月的今天也会突出显示。
我如何取消突出显示除今天以外的任何其他日期?
$('.datepicker').pickadate()
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://hateable-tests.000webhostapp.com/classic.css" rel="stylesheet">
<link href="https://hateable-tests.000webhostapp.com/classic.date.css" rel="stylesheet">
<link href="https://hateable-tests.000webhostapp.com/classic.time.css" rel="stylesheet">
<script src="https://hateable-tests.000webhostapp.com/picker.js"></script>
<script src="https://hateable-tests.000webhostapp.com/legacy.js"></script>
<script src="https://hateable-tests.000webhostapp.com/picker.date.js"></script>
<script src="https://hateable-tests.000webhostapp.com/picker.time.js"></script>
<input type="text" class="datepicker">
最佳答案
我相信这就是答案:https://github.com/amsul/pickadate.js/issues/805
ilnee commented on 2 Oct 2016
I ran into this issue as well. As a workaround, I remove thepicker__day--highlighted class from every div with that class thatdoesn't have today's timestamp as data-pick value:
var now = new Date();
var timestamp = new Date(now.getFullYear(), now.getMonth(), now.getDate()) / 1;
$('.datepicker').pickadate({
onRender: function() {
$('div.picker__day--highlighted').each(function(index, value) {
if ($(this).data('pick') !== timestamp) {
$(this).removeClass('picker__day--highlighted');
}
});
}
});
关于javascript - Amsul DateTimePicker - 如何取消选择事件日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56029030/
我正在使用 amsul 日期时间选择器 ( https://amsul.ca/pickadate.js/date/ ),如果您在预览中看到今天的日期以绿色突出显示。现在,如果您将日历移到下个月或上个月
我正在使用 Amsul DatePicker:https://amsul.ca/pickadate.js/date/#selectors而且我无法找出如何在年份下拉列表中加载所需年数。默认情况下,它会
我刚刚安装了 amsul 日期选择器,但我不知道如何禁用日期?例如,如果我希望日历显示今天的日期和 future 1 年的日期。例如:2019 年 5 月 2 日 -> 2020 年 5 月 2 日。
我使用来自 amsul.ca/pickadate.js 的精彩日期和时间选择器,但每次在日期选择器中选择新的一天时,无法让时间选择器更新禁用的时间。 例如,如果我选择星期二,则时间将从 12 点到 1
我正在尝试使用 amsul datepicker(称为 pickdate)将日期传递给我的 ajax 调用... 我有两个输入字段(从和到): 我的Js代码: var $input = $('#f
我的项目中有 amsul pickadate 插件。我可以在不同的脚本中获取 pickadate/pickatime 对象以在处理程序上使用吗? (我不想更改核心js脚本,pickadate初始化在哪
我是一名优秀的程序员,十分优秀!