我需要将currentText
jquery datepicker 中属性的默认显示从“今天”更改为“今天:2012 年 9 月 14 日”。所以问题是日期选择器是否通过某种方法公开今天的日期?还是我必须创建自己的 JS new Date() 并从那里获取日期,这是我试图避免的!
$('#txtSelectedDate').datepicker({
showButtonPanel: true,
currentText: "Today: " + getTodaysDate(); // Is there such a method?
});