ホームページ >ウェブフロントエンド >jsチュートリアル >時刻関数と拡張関数を取得するjsメソッド
組み込みの日付関数
var mydate = new Date();
mydate.get Year(); //現在の年を取得します (2 桁)
mydate.getFull Year() // 完全な年を取得します (4 桁) 1970- ????)
mydate.getMonth(); //現在の月を取得します (0 ~ 11、0 は 1 月を表します)
mydate.getDate(); // 現在の日 (1 ~ 31) を取得します
。 getDay() ; //現在の週番号を取得します (0-23)
mydate.getMinutes(); //現在の分数を取得します (0-59)
mydate.getSeconds();秒 (0-59)
mydate.getMilliseconds(); / / 現在のミリ秒を取得します (0-999)
mydate.toLocaleDateString() // 現在の日付を取得します
var mytime=mydate.toLocaleTimeString();現在時刻
mydate.toLocaleString( ); //日付と時刻を取得
拡張関数
Date.prototype.isLeap Year 閏年を決定
Date.prototype.Format 日付の書式設定Date.prototype.DateAdd 日付の計算
Date。 prototype.DateDiff 日付の差を比較
Date.prototype.toString 日付を文字列に変換
Date.prototype.toArray 日付を配列に分割
Date.prototype.DatePart 日付情報の一部を取得
Date.prototype.MaxDayOfDate 最大数を取得日付がその月の何日か
Date.prototype.WeekNumOfyear 日付がその年の何週目かを決定します
StringToDate 文字 日付の型を変換します
IsValidDate で日付の有効性を検証します
CheckDateTime 完全な日付と時刻をチェックします
日付と日付の間の日数日差
りー