實(shí)現(xiàn)設(shè)計(jì):
Step1:獲取指定時(shí)間的日期數(shù)據(jù)
Step2:用當(dāng)前起止時(shí)間進(jìn)行搜索
代碼實(shí)現(xiàn):
1.定義日期格式化方法:
Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小時(shí) "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "S": this.getMilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; }
2.根據(jù)日期差獲取指定日期數(shù)據(jù):
function getdate(days) { var now = new Date(); var date = new Date(now.getTime() - days * 24 * 3600 * 1000); var dates = date.Format('yyyy-MM-dd'); return dates; }
3.獲取不同制定時(shí)間的日期數(shù)據(jù)并賦值給起始日歷框:
function today_btn() { var today = getdate(0); var tomorrow = getdate(-1); document.getElementById("startdate").value = today; document.getElementById("enddate").value = tomorrow; } function yestoday_btn() { var today = getdate(0); var yestoday = getdate(1); document.getElementById("startdate").value = yestoday; document.getElementById("enddate").value = today; }
接下來(lái)的事情就是用獲取到的日期進(jìn)行數(shù)據(jù)請(qǐng)求了。
更多相關(guān)教程親訪問(wèn) JavaScript視頻教程
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com