您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“JavaScript如何獲取當前時間向前推三個月”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“JavaScript如何獲取當前時間向前推三個月”這篇文章吧。
具體如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Test</title> <script type="text/javascript" language="javascript" > function get3MonthBefor(){ var resultDate,year,month,date,hms; var currDate = new Date(); year = currDate.getFullYear(); month = currDate.getMonth()+1; date = currDate.getDate(); hms = currDate.getHours() + ':' + currDate.getMinutes() + ':' + (currDate.getSeconds() < 10 ? '0'+currDate.getSeconds() : currDate.getSeconds()); switch(month) { case 1: case 2: case 3: month += 9; year--; break; default: month -= 3; break; } month = (month < 10) ? ('0' + month) : month; resultDate = year + '-'+month+'-'+date+' ' + hms; return resultDate; } document.write(get3MonthBefor()); </script> </head> <body> </body> </html>
運行效果圖如下:
以上是“JavaScript如何獲取當前時間向前推三個月”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。