ホームページ > ウェブフロントエンド > jsチュートリアル > js取得時間(今週、今四半期、今月…)_javascriptスキル

js取得時間(今週、今四半期、今月…)_javascriptスキル

WBOY
リリース: 2016-05-16 17:12:52
オリジナル
1203 人が閲覧しました

JS コード

コードをコピー コードは次のとおりです:

/**
* 今週、今四半期、今月、先月の開始日と終了日を取得します
* /
var now = new Date(); //現在の日付
var nowDayOfWeek = now.getDay(); //今日の曜日
var now.getDate(); day
var nowMonth = now.getMonth(); //現在の月
var now.get Year(); //現在の年
now Year = (now Year
var lastMonthDate = new Date(); //先月の日付
lastMonthDate.setMonth(lastMonthDate.getMonth()-1); last Year = lastMonthDate.get Year();
var lastMonth = lastMonthDate.getMonth();

//日付の形式: yyyy-MM-dd
function formatDate(date) {
var myyear = date.getFullyear();
var mymonth = date.getMonth() 1;

if(mymonth < 10){
mymonth = "0" mymonth;
if(myweekday <10){
myweekday = "0" myweekday;
return (myyear "-" mymonth "-" myweekday) ;
}

// 月の日数を取得します
function getMonthDays(myMonth){
var monthStartDate = new Date(now Year, myMonth, 1); monthEndDate = new Date(now Year, myMonth 1, 1);
var days = (monthEndDate - monthStartDate)/(1000 * 60 * 60 * 24);
return days; >// この四半期の開始月を取得します
function getQuarterStartMonth(){
varquartStartMonth = 0;
if(nowMonth<3){
quarterStartMonth = 0; if(2quartStartMonth = 3;
if(5quartStartMonth = 6; if(nowMonth> 8){
quartStartMonth = 9;
}
return fourStartMonth;

// 週の開始日を取得します
function getWeekStartDate() {
var weekStartDate = new Date(now Year, nowMonth, nowDay - nowDayOfWeek);
return formatDate(weekStartDate)
}

// 今週の終了日を取得します
function getWeekEndDate() {
var weekEndDate = new Date(now Year, nowMonth, nowDay (6 - nowDayOfWeek));
return formatDate(weekEndDate)

// 開始を取得します。今月の日付
function getMonthStartDate(){
var monthStartDate = new Date(now Year, nowMonth, 1)
return formatDate(monthStartDate);

//Get今月の終了日
function getMonthEndDate(){
var monthEndDate = new Date(now Year, nowMonth, getMonthDays(nowMonth));
return formatDate(monthEndDate); 🎜>//前月の初めを取得 When
function getLastMonthStartDate(){
var lastMonthStartDate = new Date(now Year, lastMonth, 1)
return formatDate(lastMonthStartDate);
🎜>
//最後の月の停止を取得します When
function getLastMonthEndDate(){
var lastMonthEndDate = new Date(now Year, lastMonth, getMonthDays(lastMonth));
return formatDate(lastMonthEndDate); 🎜>}

//get この四半期の開始日
function getQuarterStartDate(){

varquartStartDate = new Date(now Year, getQuarterStartMonth(), 1); return formatDate(quartStartDate);
}

//または、この四半期の終了日
function getQuarterEndDate(){
varquarterEndMonth = getQuarterStartMonth() 2; new Date(now Year, 四半期終了月, getMonthDays(四半期終了月));
return formatDate(quartStartDate);

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート