http://tylerfrankenstein.com/user/4/code/javascript-date-time-yyyy-mm-dd-hh-mm-ss



function js_yyyy_mm_dd_hh_mm_ss () {
  now = new Date();
  year = "" + now.getFullYear();
  month = "" + (now.getMonth() + 1); if (month.length == 1) { month = "0" + month; }
  day = "" + now.getDate(); if (day.length == 1) { day = "0" + day; }
  hour = "" + now.getHours(); if (hour.length == 1) { hour = "0" + hour; }
  minute = "" + now.getMinutes(); if (minute.length == 1) { minute = "0" + minute; }
  second = "" + now.getSeconds(); if (second.length == 1) { second = "0" + second; }
  return year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + second;
}


'javascript' 카테고리의 다른 글

json -> string  (0) 2016.03.02
jquery li 태그 value  (0) 2016.02.16
자바스크립트 array slice  (0) 2016.02.02
explode 와 같은 함수 split  (0) 2016.02.02
동적 자바스크립트 키워드 배열 생성  (0) 2016.02.01
Posted by 이상욱1
,