jquery easyui datebox 时间控件默认显示当前日期

时间:2021-02-12 18:06:32

转载:jquery easyui datebox 时间控件默认显示当前日期的实现方法

?
12345678910111213  <script>//得到当前日期 formatterDate = function(date) {var day = date.getDate() > 9 ? date.getDate() : "0" + date.getDate();var month = (date.getMonth() + 1) > 9 ? (date.getMonth() + 1) : "0"+ (date.getMonth() + 1);return date.getFullYear() + '-' + month + '-' + day;}; window.onload = function () { $('#startTime').datebox('setValue', formatterDate(new Date()));} </script>