最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

Javascrip中t獲取指定日期的方法

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 20:33:30
文檔

Javascrip中t獲取指定日期的方法

Javascrip中t獲取指定日期的方法:這篇文章主要介紹了Javascript中獲取指定日期的方法,感興趣的朋友可以參考一下,希望對(duì)你有所幫助!實(shí)現(xiàn)設(shè)計(jì):Step1:獲取指定時(shí)間的日期數(shù)據(jù)Step2:用當(dāng)前起止時(shí)間進(jìn)行搜索代碼實(shí)現(xiàn):1.定義日期格式化方法:Date.prototype.Format = funct
推薦度:
導(dǎo)讀Javascrip中t獲取指定日期的方法:這篇文章主要介紹了Javascript中獲取指定日期的方法,感興趣的朋友可以參考一下,希望對(duì)你有所幫助!實(shí)現(xiàn)設(shè)計(jì):Step1:獲取指定時(shí)間的日期數(shù)據(jù)Step2:用當(dāng)前起止時(shí)間進(jìn)行搜索代碼實(shí)現(xiàn):1.定義日期格式化方法:Date.prototype.Format = funct

這篇文章主要介紹了Javascript中獲取指定日期的方法,感興趣的朋友可以參考一下,希望對(duì)你有所幫助!

實(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

文檔

Javascrip中t獲取指定日期的方法

Javascrip中t獲取指定日期的方法:這篇文章主要介紹了Javascript中獲取指定日期的方法,感興趣的朋友可以參考一下,希望對(duì)你有所幫助!實(shí)現(xiàn)設(shè)計(jì):Step1:獲取指定時(shí)間的日期數(shù)據(jù)Step2:用當(dāng)前起止時(shí)間進(jìn)行搜索代碼實(shí)現(xiàn):1.定義日期格式化方法:Date.prototype.Format = funct
推薦度:
  • 熱門(mén)焦點(diǎn)

最新推薦

猜你喜歡

熱門(mén)推薦

專題
Top