]
time は現在の時刻です
コードは次のとおりです:
//1.2013- 4-9 11:21:32
//2. April 9, 2013 11:21:32
//3. April 9, 2013 11:21:32 am
//4. April 9 、2013 13:21:32 pm Seconds
/*
var thedate = new Date();
alert(thedate.getFull Year() '-' thedate.getMonth() '-' thedate.getDate( ) ' ' thedate.toLocaleTimeString() );
alert(thedate.toLocaleDateString() ' ' thedate.getHours() 'point' thedate.getMinutes() '分' thedate.getSeconds() '秒'); >if (thedate.getHours() < 12) {
alert(thedate.toLocaleDateString() '午前' thedate.getHours() 'ポイント' thedate.getMinutes() '分' thedate.getSeconds() '秒' );
}
else {
alert(thedate.toLocaleDateString() '午後' thedate.getHours() 'point' thedate.getMinutes() '分' thedate.getSeconds() '秒');
}
* /