[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
复制代码 代码如下:
// 日期
$('.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));
}
});
标签:
替换,时间
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“JS 替换和时间插件的结合使用方法”评论...