源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2020-05-12 09:35 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js按指定格式显示日期时间的样式代码
[Ctrl+A 全选 注:[url=http://www.1sucai.cn/article/23421.htm]如需引入外部Js需刷新才能执行[/url]]
时间为当前时间
[u]复制代码[/u] 代码如下:
//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()); alert(thedate.toLocaleDateString() + ' ' + thedate.getHours() + '点' + thedate.getMinutes() + '分' + thedate.getSeconds() + '秒'); if (thedate.getHours() < 12) { alert(thedate.toLocaleDateString() + ' 上午' + thedate.getHours() + '点' + thedate.getMinutes() + '分' + thedate.getSeconds() + '秒'); } else { alert(thedate.toLocaleDateString() + ' 下午' + thedate.getHours() + '点' + thedate.getMinutes() + '分' + thedate.getSeconds() + '秒'); } */
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部