mirror of https://github.com/layui/laydate
commit
0da327c8a9
|
@ -760,7 +760,10 @@ Dates.events = function(){
|
||||||
as.otoday = S('#laydate_today');
|
as.otoday = S('#laydate_today');
|
||||||
Dates.on(as.otoday, 'click', function(){
|
Dates.on(as.otoday, 'click', function(){
|
||||||
var now = new Date();
|
var now = new Date();
|
||||||
Dates.creation([now.getFullYear(), now.getMonth() + 1, now.getDate()]);
|
// 2016-09-23 18:20:54 修复选中今天choose方法得不到数据
|
||||||
|
// Dates.creation([now.getFullYear(), now.getMonth() + 1, now.getDate()]);
|
||||||
|
Dates.elem[as.elemv] = laydate.now(0,Dates.options.format);
|
||||||
|
Dates.creation([Dates.ymd[0], Dates.ymd[1]+1, Dates.ymd[2]]);
|
||||||
});
|
});
|
||||||
|
|
||||||
//确认
|
//确认
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -30,25 +30,29 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript" src="../laydate.dev.js"></script>
|
<script type="text/javascript" src="../laydate.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
laydate({
|
laydate({
|
||||||
elem: '#J-xl'
|
elem: '#J-xl',
|
||||||
|
format: 'YYYY-MM-DD hh:mm:ss', // 分隔符可以任意定义,该例子表示只显示年月
|
||||||
|
choose: function(datas){
|
||||||
|
console.log(datas);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById('J-xl-2-btn').onclick = function(){
|
// document.getElementById('J-xl-2-btn').onclick = function(){
|
||||||
laydate({
|
// laydate({
|
||||||
elem: '#J-xl-2'
|
// elem: '#J-xl-2'
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
|
||||||
laydate({
|
// laydate({
|
||||||
elem: '#J-xl-3'
|
// elem: '#J-xl-3'
|
||||||
});
|
// });
|
||||||
|
|
||||||
laydate({
|
// laydate({
|
||||||
elem: document.getElementById('J-xl-4')
|
// elem: document.getElementById('J-xl-4')
|
||||||
});
|
// });
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue