1. 首页
  2. 数据库
  3. 其它
  4. js按指定格式显示日期时间的样式代码

js按指定格式显示日期时间的样式代码

上传者: 2020-12-23 02:38:46上传 PDF文件 19.95KB 热度 32次
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] 时间为当前时间 代码如下: //1.2013-4-9 11:21:32 //2.2013年4月9日 11点21分32秒 //3.2013年4月9日 上午11点21分32秒 //4.2013年4月9日 下午13点21分32秒 /* var thedate = new Date(); alert(thedate.getFullYear() + ‘-‘ + thedate.getMonth() + ‘-‘ + thedate.getDate() + ‘ ‘ + thedate.toLocaleTimeString());
用户评论