您的位置:首页 > Web前端 > JavaScript

JS 输出当前时间

2013-04-09 19:30 295 查看

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

}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: