欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JS 替换和时间插件的结合使用方法_javascript技巧

程序员文章站 2022-04-24 11:40:25
...

复制代码 代码如下:

// 日期
$('.date').datepicker({
changeYear: true,
changeMonth: true,
minDate:null,
maxDate:null,
onClose: function(selectedDate) {
$('.gap-date').datepicker('option','minDate', '+1m');
}
});

// 日期范围
$('.gap-date').datepicker({
changeYear: true,
changeMonth: true,
maxDate:null,
onClose: function(selectedDate) {
var y, m, d;
var arr = selectedDate.split('-');
y = arr[0];
m = arr[1] - 7;
d = arr[2];
$('.date').datepicker('option','maxDate', new Date(y, m, d));
}
});
相关标签: 替换 时间