<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