码迷,mamicode.com
首页 > 其他好文 > 详细

easyui的datebox当前时间以后不可用

时间:2015-12-09 13:35:17      阅读:531      评论:0      收藏:0      [点我收藏+]

标签:

$("#calendar_add").calendar({
validator:function(date){
var now = new Date();
var today = new Date(now.getFullYear(), now.getMonth(), now.getDate());
var selectday=date.getTime()-today.getTime();
if(selectday<0){//判断date和当前时间new Date()的先后,如果date晚于当前时间,return false;
return false;//如果date晚于当前时间
}
return true
},
onSelect: function(date){
alert(date.getFullYear()+":"+(date.getMonth()+1)+":"+date.getDate());
}
});

是datebox继承自Calendar,是datebox创建时会包含一个calendar。

所以可以从datebox获取一个他使用的calendar

$(‘#dd‘).datebox(‘calendar‘).calendar({

    validator: function(date){
        var now = new Date();
        var d1 = new Date(now.getFullYear(), now.getMonth(), now.getDate());
        var d2 = new Date(now.getFullYear(), now.getMonth(), now.getDate()+10);
        return d1<=date && date<=d2;
    }
});

easyui的datebox当前时间以后不可用

标签:

原文地址:http://www.cnblogs.com/sovy/p/5032418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!