1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

日付フォームの差分計算

Last updated at Posted at 2019-11-10

日付フォームの差分計算についてのメモ。もっと上手いやり方があるかもしれません。

作ったきっかけ

弊社で運営している自動見積書発行システム「マイ見積」で、ホームページ上で期間設定できたら便利だろう、ということで、フォームに日付(開始日と終了日)を設定できるようにしました。 

html部分

html5 の、input type="date"機能を使いました。以下のようなhtmlです。

<input type="date" id="Dates1_start" name="Dates1_start" value="2019-11-16" min="2019-11-16" max="2020-01-10" pattern="[0-9]{4}-[0-9]{2}-[0-9]{2}">

モダンなブラウザなら、カレンダー表示して日付を選べるようになっています。

date-form.png

日付の差分計算

原始的な方法ですが、「日付をマイクロ秒に変換して、86400000で割る」で実装しました。

var Dates1_start = new Date( Dates1_startval );
var Dates1_end = new Date( Dates1_endval );
var Dates1_day = Math.floor((Dates1_end - Dates1_start + 86400000)/86400000);

86400000を足しているのは、開始日と終了日が同じだった場合に日数を1にしたいからです。

サンプルページ

実際に動いている例は、広告掲載期間設定して見積書発行をごらんください。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?