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