熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

js獲取當前日期或者前七天日期

2022-06-13   來源: JSP教程 

  <html> <head> <script type="text/javascript"> Dateprototypeformat = function(fmt) { var o = { "M+" : thisgetMonth()+ //月份 "d+" : thisgetDate() //日 "h+" : thisgetHours() //小時 "m+" : thisgetMinutes() //分 "s+" : thisgetSeconds() //秒 "q+" : Mathfloor((thisgetMonth()+)/) //季度 "S" : thisgetMilliseconds() //毫秒 }; if(/(y+)/test(fmt)) fmt=fmtreplace(RegExp$ (thisgetFullYear()+"")substr( RegExp$length)); for(var k in o) if(new RegExp("("+ k +")")test(fmt)) fmt = fmtreplace(RegExp$ (RegExp$length==)?(o[k]):((""+ o[k])substr((""+ o[k])length))); return fmt; } function getDate(day){ var zdate=new Date(); var sdate=zdategetTime()(****); var edate=new Date(sdate(day****))format("yyyyMMdd"); return edate; } function wirte(){ var a = getDate(); documentwrite(a); } </script> </head> <body onload="wirte()"> <! documentwrite()//前七天 getDate()//昨天 getDate()//今天 getDate() > </body> </html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20501.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.