js按指定格式显示日期时间的样式代码
[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());
用户评论