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

2019-12-24,,,


[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());
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() + '秒');
}
*/

您可能感兴趣的文章:

  • JS实现网页标题栏显示当前时间和日期的完整代码
  • js显示当前日期时间和星期几
  • javascript实现日期时间动态显示示例代码
  • JavaScript在浏览器标题栏上显示当前日期和时间的方法
  • JavaScript显示当然日期和时间即年月日星期和时间
  • 仅2行代码的javascript按指定格式显示日期时间效果
  • JS 显示当前日期与时间的代码
  • 用js实现页面显示当前日期和时间的代码
  • 完整显示当前日期和时间的JS代码
  • JS实现日期时间动态显示的方法

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

下载本文的Word格式文档,以方便收藏与打印。