ASP.NET MVC コントロールヘルプ
DateTime クラス
ファイル
wijmo.js
モジュール
wijmo

日付および時刻のユーティリティを提供します。

メソッド

メソッド

Static addDays

addDays(value: Date, days: number): Date

特定の日付に指定した日数を加算した新しい日付を取得します。

パラメーター
  • value: Date

    Original date.

  • days: number

    Number of days to add to the given date.

戻り値
Date

Static addHours

addHours(value: Date, hours: number): Date

特定の日付に指定した時間数を加算した新しい日付を取得します。

パラメーター
  • value: Date

    Original date.

  • hours: number

    Number of hours to add to the given date.

戻り値
Date

Static addMinutes

addMinutes(value: Date, minutes: number): Date

特定の日付に指定した分数を加算した新しい日付を取得します。

パラメーター
  • value: Date

    Original date.

  • minutes: number

    Number of minutes to add to the given date.

戻り値
Date

Static addMonths

addMonths(value: Date, months: number): Date

特定の日付に指定した月数を加算した新しい日付を取得します。

パラメーター
  • value: Date

    Original date.

  • months: number

    Number of months to add to the given date.

戻り値
Date

Static addSeconds

addSeconds(value: Date, seconds: number): Date

特定の日付に指定した秒数を加算した新しい日付を取得します。

パラメーター
  • value: Date

    Original date.

  • seconds: number

    Number of seconds to add to the given date.

戻り値
Date

Static addYears

addYears(value: Date, years: number): Date

特定の日付に指定した年数を加算した新しい日付を取得します。

パラメーター
  • value: Date

    Original date.

  • years: number

    Number of years to add to the given date.

戻り値
Date

Static clone

clone(date: Date): Date

指定したDate オブジェクトのコピーを作成します。

パラメーター
  • date: Date

    Date object to copy.

戻り値
Date

Static equals

equals(d1: Date | null, d2: Date | null): boolean

2つのDateオブジェクトが同じ日付と時刻を指している場合(または両方がnullの場合)、trueを返します。

パラメーター
  • d1: Date | null

    First date.

  • d2: Date | null

    Second date.

戻り値
boolean

Static fromDateTime

fromDateTime(date: Date, time: Date): Date

2つのDateオブジェクトに設定された日付と時刻を持つDateオブジェクトを取得します。

パラメーター
  • date: Date

    Date object that contains the date (day/month/year).

  • time: Date

    Date object that contains the time (hour:minute:second.millisecond).

戻り値
Date

Static fromFiscal

fromFiscal(date: Date, govt: boolean): void

現在のカルチャを使用して、会計年度日付をカレンダー日付に変換します。

パラメーター
  • date: Date

    Fiscal year date.

  • govt: boolean

    Whether to use the government or corporate fiscal year.

戻り値
void

Static monthFirst

monthFirst(value: Date): Date

指定された日付の月の最初の日を取得します。

パラメーター
  • value: Date

    Original date.

戻り値
Date

Static monthLast

monthLast(value: Date): Date

指定された日付の月末日を取得します。

パラメーター
  • value: Date

    Original date.

戻り値
Date

Static newDate

newDate(year?: number, month?: number, day?: number, hour?: number, min?: number, sec?: number, ms?: number): Date

新しいDateオブジェクトインスタンスを取得します。

パラメーター
  • year: number Optional

    Integer value representing the year, defaults to current year.

  • month: number Optional

    Integer value representing the month (0-11), defaults to current month.

  • day: number Optional

    Integer value representing the day (1-31), defaults to current day.

  • hour: number Optional

    Integer value representing the hour, defaults to zero.

  • min: number Optional

    Integer value representing the minute, defaults to zero.

  • sec: number Optional

    Integer value representing the second, defaults to zero.

  • ms: number Optional

    Integer value representing the millisecond, defaults to zero.

戻り値
Date

Static sameDate

sameDate(d1: Date, d2: Date): boolean

2つのDateオブジェクトが同じ日付を指している場合、trueを返します(時刻は無視します)。

パラメーター
  • d1: Date

    First date.

  • d2: Date

    Second date.

戻り値
boolean

Static sameTime

sameTime(d1: Date, d2: Date): boolean

2つのDateオブジェクトが同じ時刻を指している場合、trueを返します(日付は無視します)。

パラメーター
  • d1: Date

    First date.

  • d2: Date

    Second date.

戻り値
boolean

Static toFiscal

toFiscal(date: Date, govt: boolean): void

現在のカルチャを使用して、カレンダー日付を会計日付に変換します。

パラメーター
  • date: Date

    Calendar date.

  • govt: boolean

    Whether to use the government or corporate fiscal year.

戻り値
void

Static weekFirst

weekFirst(value: Date, firstDayOfWeek?: Globalize): Date

指定された日付の最初の曜日を取得します。

パラメーター
  • value: Date

    Original date.

  • firstDayOfWeek: Globalize Optional

    First day of week (0 for Sunday, 1 for Monday, etc). Defaults to first day of week for the current culture.

戻り値
Date

Static weekLast

weekLast(value: Date, firstDayOfWeek?: Globalize): Date

指定された日付の最終曜日を取得します。

パラメーター
  • value: Date

    Original date.

  • firstDayOfWeek: Globalize Optional

    First day of week (0 for Sunday, 1 for Monday, etc). Defaults to first day of week for the current culture.

戻り値
Date

Static yearFirst

yearFirst(value: Date): Date

指定された日付の年の最初の日を取得します。

パラメーター
  • value: Date

    Original date.

戻り値
Date

Static yearLast

yearLast(value: Date): Date

指定された日付の年の最後の日を取得します。

パラメーター
  • value: Date

    Original date.

戻り値
Date