js獲取相應的時間端

2021-08-07 15:04:30 字數 1971 閱讀 6695

/**

* 獲取當天、前幾天、本週、上週、下週、本季度、本月、上月、下月的開始日期、結束日期

*/var now = new date();                    //當前日期   

var nowdayofweek = now.getday();         //今天本週的第幾天   

var nowday = now.getdate();              //當前日   

var nowmonth = now.getmonth();           //當前月   

var nowyear = now.getyear();             //當前年   

nowyear += (nowyear < 2000) ? 1900 : 0;  //  

var lastmonthdate = new date();  //上月日期

lastmonthdate.setdate(1);  

lastmonthdate.setmonth(lastmonthdate.getmonth()-1);  

var lastyear = lastmonthdate.getyear();  

var lastmonth = lastmonthdate.getmonth();  

//格式化日期:yyyy-mm-dd   

function formatdate(date)       

if(myweekday < 10)     

return (myyear+"-"+mymonth + "-" + myweekday);      

}      

//獲得某月的天數   

function getmonthdays(mymonth)     

//獲得本季度的開始月份   

function getquarterstartmonth()     

if(2quarterstartmonth = 3;     

}     

if(5quarterstartmonth = 6;     

}     

if(nowmonth>8)     

return quarterstartmonth;     

}     

//獲得本週的開始日期   

function getweekstartdate()       

//獲得本週的結束日期   

function getweekenddate()       

//獲得本月的開始日期   

function getmonthstartdate()     

//獲得本月的結束日期   

function getmonthenddate()     

//獲得上月開始時間

function getlastmonthstartdate()  

//獲得上月結束時間

function getlastmonthenddate()  

//獲取最近7天日期 

function getnearseven()    

//獲得本季度的開始日期   

function getquarterstartdate()     

//或的本季度的結束日期   

function getquarterenddate() 

//獲取上週下週資料//獲取上週開始時間以及下週結束時間

function startweek(oneday)  

function nextweek(oneday)

var  cur_day=new date();

//1.獲取上週開始時間以及下週結束時間

$("#lastweekdate").click(function())

//2.獲取下週開始時間以及結束時間;

$("#nextweekdate").click(function()) 

js獲取伺服器端時間

用到了responseheader裡面的資訊。也就是當你傳送請求時候裡面的date時間 因為專案中用的jquery所以直接貼jquery的 注意,需要再伺服器環境裡跑喲不要本地資料夾裡自嗨那你得到的伺服器時間只會是null,因為你在本地跨域跨域跨域啊 反正我是沒有辦法解決,有能解決的大神歡迎指導一下...

js獲取時間

js獲取時間 var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 myd...

js時間獲取

1 獲取系統時間 var date new date 2 利用系統時間獲取年月日 時分秒 星期 不是getyear var year time.getfullyear 因為獲取的月份是0 11,所以要 1 var month time.getmonth 1 不是getday var day time...