在Bootstrap的datepicker中,我想要有Month&在
jquery Ui datepicker的年度菜单
但在Bootstrap date picker年,没有月年菜单,我们必须点击这个月才能更改年份.
在Bootstrap date picker年可以显示月和年菜单吗?
解决方法
var datePick=$( "#datepicker" ).datepicker({ changeMonth: true,changeYear: true }); datePick.click(function (event) { event.stopPropagation(); });
尝试这个