有没有让jQuery UI Datepicker无法点击,所以它基本上只是显示日期?我试过了
$("#calendar").datepicker({
disabled: true,
altField: '#note_date',
maxDate: 0
});
但它不起作用。谢谢你的阅读。
答案 0 :(得分:2)
这样的东西?
示例: http://jsfiddle.net/Ay6Nv/
$('#calendar').datepicker({
beforeShowDay: function(date) {
return [new Date(this.value).getDate() == date.getDate()];
}
});
答案 1 :(得分:0)
为什么不在这样的输入中添加readonly属性:
<input type='text' value='24/01/2019' readonly="readonly" />