亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

JavaScript日期時(shí)間格式化函數(shù)

時(shí)間:2024-08-29 22:03:25 JavaScript 我要投稿
  • 相關(guān)推薦

JavaScript日期時(shí)間格式化函數(shù)

  函數(shù)代碼:

JavaScript日期時(shí)間格式化函數(shù)

  復(fù)制代碼 代碼如下:

  Date.prototype.format = function(format){

  var o = {

  "M+" : this.getMonth()+1, //month

  "d+" : this.getDate(), //day

  "h+" : this.getHours(), //hour

  "m+" : this.getMinutes(), //minute

  "s+" : this.getSeconds(), //second

  "q+" : Math.floor((this.getMonth()+3)/3), //quarter

  "S" : this.getMilliseconds() //millisecond

  }

  if(/(y+)/.test(format)) format=format.replace(RegExp.$1,

  (this.getFullYear()+"").substr(4 - RegExp.$1.length));

  for(var k in o)if(new RegExp("("+ k +")").test(format))

  format = format.replace(RegExp.$1,

  RegExp.$1.length==1 ? o[k] :

  ("00"+ o[k]).substr((""+ o[k]).length));

  return format;

  }

  調(diào)用示例:

  復(fù)制代碼 代碼如下:

  setInterval(function(){

  var time = new Date().format("hh:mm:ss");

  var date = new Date().format("yyyy-MM-dd");

  document.getElementById("Time").innerHTML=time;

  document.getElementById("Date").innerHTML=date;

  },1000);

【JavaScript日期時(shí)間格式化函數(shù)】相關(guān)文章:

淺析jQuery 遍歷函數(shù)javascript03-29

Javascript函數(shù)的定義和用法分析03-31

JavaScript中push(),join() 函數(shù)實(shí)例詳解03-31

最常用的20個(gè)javascript方法函數(shù)03-10

英語日期時(shí)間的表達(dá)03-06

JavaScript中常見的字符串操作函數(shù)及用法07-24

Excel日期與時(shí)間設(shè)置教程03-03

JavaScript基于正則表達(dá)式數(shù)字判斷函數(shù)03-31

有關(guān)javascript實(shí)現(xiàn)的多個(gè)層切換效果通用函數(shù)示例03-31