這次帶給大家如何使用JS取得最近7天與最近3天日期,使用JS取得最近7天與最近3天日期的注意事項有哪些,下面就是實戰案例,一起來看一下。
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title> JS获取最近三天和最近3天日期</title> </head> <body> <script> //获取最近7天日期 console.log(getDay(0));//当天日期 console.log(getDay(-7));//7天前日期 //获取最近3天日期 console.log(getDay(0));//当天日期 console.log(getDay(-3));//3天前日期 function getDay(day){ var today = new Date(); var targetday_milliseconds=today.getTime() + 1000*60*60*24*day; today.setTime(targetday_milliseconds); //注意,这行是关键代码 var tYear = today.getFullYear(); var tMonth = today.getMonth(); var tDate = today.getDate(); tMonth = doHandleMonth(tMonth + 1); tDate = doHandleMonth(tDate); return tYear+"-"+tMonth+"-"+tDate; } function doHandleMonth(month){ var m = month; if(month.toString().length == 1){ m = "0" + month; } return m; } </script> </body> </html>
運行結果:
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是如何使用JS取得最近7天與最近3天日期的詳細內容。更多資訊請關注PHP中文網其他相關文章!