yyyy-MM-dd hh:mm:ss時間日期格式化程式碼

antzone發表於2017-04-13

分享一段程式碼例項,它能夠將時間日期格式化為yyyy-MM-dd hh:mm:ss形式。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script>
Date.format = function (format, date) {
  date instanceof Date || (date = new Date(date));
  var f = {
    "y+": date.getFullYear(),
    "M+": date.getMonth() + 1,
    "d+": date.getDate(),
    "h+": date.getHours(),
    "m+": date.getMinutes(),
    "s+": date.getSeconds()
  }, fd;
  for (var o in f) {
    if (new RegExp(o).test(format)) {
      fd = RegExp.lastMatch;
      format = format.replace(fd, o === "y+" ? f[o].toString().slice(-fd.length) : fd.length === 1 ? f[o] : (f[o] + 100).toString().slice(-fd.length));
    }
  }
  return format;
};
window.onload = function () {
  var odiv = document.getElementById("antzone");
  var timestamp = Date.now();
  odiv.innerHTML = Date.format("yyyy-MM-dd hh:mm:s", timestamp)
}
</script>
</head>
<body>
<div id="antzone"></div>
</body>
</html>

相關文章