作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个在线预订,并且遇到了这个问题,有没有办法可以在日期选择器上突出显示不可用的日期?假设我已在数据库中插入了日期。这是我的日期选择器代码。
<input type="text" name="pick-up-date" id="pick-up-date" class="form-control datepicker" placeholder="mm-dd-yyyy">
这是屏幕截图:
最佳答案
使用 jQuery 中的 beforeShowDay()
函数 check this
例如,类似这样的事情,
var datesToDisable = ["2015-01-07","2015-17-07","2015-21-07"]; //you have to fetch the dates and put em in an array and wh7atever the format is.
$('#pick-up-date').datepicker({
beforeShowDay: function(date){
var string = jQuery.datepicker.formatDate('dd-mm-yy', date);
return [ datesToDisable.indexOf(string) == -1 ]
}
});
应该可以解决问题!
关于javascript - 日期选择器突出显示日期(如果不可用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31091621/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!