js 지정 한 형식 으로 날짜 시간 을 표시 하 는 스타일 코드

1725 단어
/// <summary> /// 날짜 시간 / / & lt 를 포맷 합 니 다. /summary> /// <param name="x">표시 할 날짜 시간, 예 를 들 어 new Date () & lt; /param> /// <param name="y">yyy - MM - dd hh: mm: ss & lt; /param> function date2str(x,y) { var z = {M:x.getMonth()+1,d:x.getDate(),h:x.getHours(),m:x.getMinutes(),s:x.getSeconds()}; y = y.replace(/(M+|d+|h+|m+|s+)/g,function(v) {return ((v.length>1?"0":"")+eval('z.'+v.slice(-1))).slice(-2)}); return y.replace(/(y+)/g,function(v) {return x.getFullYear().toString().slice(-v.length)}); } alert(date2str(new Date(),"yyyy-MM-dd hh:mm:ss")); alert(date2str(new Date(),"yyyy-M-d h:m:s"));
[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() + ' ');
}
*/

좋은 웹페이지 즐겨찾기