解决日期对话框不能自动关闭的问题
parent
18e9e7342d
commit
82248b67f4
|
@ -138,7 +138,13 @@ function renderMonthDatePicker() {
|
||||||
$(".input-changeable-month-budget-plan").datepicker({
|
$(".input-changeable-month-budget-plan").datepicker({
|
||||||
format: 'yyyy-mm',
|
format: 'yyyy-mm',
|
||||||
viewMode: 'years',
|
viewMode: 'years',
|
||||||
minViewMode: 'months'
|
minViewMode: 'months'/*,
|
||||||
|
autoClose:true*/
|
||||||
|
});
|
||||||
|
|
||||||
|
//解决不能自动关闭的问题
|
||||||
|
$(".am-datepicker-month").on("click", function() {
|
||||||
|
$(".am-datepicker").hide();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue