博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
easy ui datatimebox databox 当前时间
阅读量:5143 次
发布时间:2019-06-13

本文共 1081 字,大约阅读时间需要 3 分钟。

databox  当前日期:

  class="easyui-datebox"

1 var curr_time = new Date();2         var strDate = curr_time.getFullYear() + "-";3         strDate += curr_time.getMonth() + 1 + "-";4         strDate += curr_time.getDate() + "-";5         strDate += curr_time.getHours() + ":";6         strDate += curr_time.getMinutes() + ":";7         strDate += curr_time.getSeconds();8         $("#openTime").datetimebox("setValue", strDate);

datatimebox 当前日期(包含时分秒):

  class="easyui-datetimebox"

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);               var hor = date.getHours();               var min = date.getMinutes();               var sec = date.getSeconds();               return date.getFullYear() + '-' + month + '-' + day+" "+hor+":"+min+":"+sec;              };               $("#closeTime").datetimebox("setValue",formatterDate(new Date()));

 

转载于:https://www.cnblogs.com/jdw12306/p/6722880.html

你可能感兴趣的文章
Xcode5和ObjC新特性
查看>>
LibSVM for Python 使用
查看>>
Centos 7.0 安装Mono 3.4 和 Jexus 5.6
查看>>
CSS属性值currentColor
查看>>
java可重入锁reentrantlock
查看>>
浅谈卷积神经网络及matlab实现
查看>>
解决ajax请求cors跨域问题
查看>>
《收获,不止Oracle》pdf
查看>>
LinkedList<E>源码分析
查看>>
Real-Time Rendering 笔记
查看>>
如何理解HTML结构的语义化
查看>>
Activity之间的跳转:
查看>>
实验四2
查看>>
Android现学现用第十一天
查看>>
多路复用
查看>>
Python数据可视化之Pygal(雷达图)
查看>>
Java学习笔记--字符串和文件IO
查看>>
转 Silverlight开发历程—(画刷与着色之线性渐变画刷)
查看>>
SQL语法(3)
查看>>
在js在添版本号
查看>>