|
日期查询时我们常用的查询,设置默认也是很正常的情况,jeecg的日期设置是使用的easyui-datebox
这个datebox设置有一个问题也是easyui问题(我个人猜想,不正确可以指出来----easyui同样也是
在页面加载完成之后执行,估计也是jquery的ready方法,这样我们的ready就不能一开始就拿到
easy的值)------这个猜想是我实现的依据,很简单我们在easyui初始化完成时候执行就是了对不- $("input[name='applytime_begin']").attr("class","easyui-datebox");//设置为日期样式
- $("input[name='applytime_begin']").attr("id","applytime_begin");//给他设置id,默认没有生成
- $("input[name='applytime_end']").attr("class","easyui-datebox");
- $("input[name='applytime_end']").attr("id","applytime_end");
复制代码 接下来我们等1秒,这个看大家,我自己测试500毫秒也可以的- setTimeout(function(){
- var myDate = new Date();
- var time = myDate.getFullYear()+"-"+(myDate.getMonth()+1)+"-"+myDate.getDate();
- $("#applytime_begin").datebox('setValue', time);
- $("#applytime_end").datebox('setValue', time);
- },1000);
复制代码 这样设置我们想要的时间就可以了,欢迎拍砖,大家如果有好办法,希望介绍给楼主最后上个图吧,默认的时间
不过没有按照这个时间查询,我们可以在后台也设置下就可以调通了
|
|