/**
* 獲取本週、本季度、本月、上月的開始日期、結束日期
*/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(28)
return quarterstartmonth;
} //獲得本週的開始日期
function getweekstartdate()
//獲得本週的結束日期
function getweekenddate()
//獲得本月的開始日期
function getmonthstartdate()
//獲得本月的結束日期
function getmonthenddate()
//獲得上月開始時間
function getlastmonthstartdate()
//獲得上月結束時間
function getlastmonthenddate()
//獲得本季度的開始日期
function getquarterstartdate()
//或的本季度的結束日期
function getquarterenddate()
如何判斷是否是陣列
typeof 只能返回object eg a 1,2,3 js提供的方法 a array.isarray a 從建構函式入手 b a instanceof array 從原型入手 c array.prototype.isprototypeof a 根據物件的class 屬性 類屬性 跨原型鏈呼叫to...
如何判斷鍊錶是否是回文
回文,英文palindrome,指乙個順著讀和反過來讀都一樣的字串,比如madam 我愛我,這樣的短句在智力性 趣味性和藝術性上都頗有特色,中國歷史上還有很多有趣的回文詩。那麼,我們的第乙個問題就是 判斷乙個字串是否是回文?同時從字串頭尾開始向中間掃瞄字串,如果所有字元都一樣,那麼這個字串就是乙個回...
判斷是否是閏年
使用者輸入月份,判斷當前月份為幾月,並輸出有多少天。如果使用者輸入2月份,則請使用者輸入年份,判斷平年則輸出28天,閏年則輸出29天。能被4整除但不能被100整除,或者能被400整除 months input 請輸入當前月份 while notmonths.isdigit or int months...