我正在尝试选择年份,但是日历中未显示年份。
我的代码写在下面:
$('#startdate').datepicker({
format: 'yyyy-mm-dd',
orientation: "auto",
autoclose: true
});
答案 0 :(得分:1)
尝试将这些添加到您的选项中。
changeMonth: true,
changeYear: true,
答案 1 :(得分:0)
$('#startdate').datepicker({
format: 'yyyy-mm-dd',
orientation: "auto",
autoclose: true,
changeYear:true
});