質問編集履歴

3

.Net Framework、ブラウザについて追記しました。

2021/08/14 01:58

投稿

Yamachan777
Yamachan777

スコア5

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,10 @@
1
- Visual Studio 2019にてWebアプリケーションを作成しています。
1
+ Visual Studio 2019にてWebアプリケーション(Webページ)を作成しています。
2
+
3
+ .Net FrameworkはVer4.8です。
4
+
5
+ 運用ルールで使用ブラウザはChromeに限定しております。
6
+
7
+
2
8
 
3
9
  日付入力で本日より先(未来)の日付入力を不可とするために、CustomValidatorを使用しています。
4
10
 
@@ -116,6 +122,4 @@
116
122
 
117
123
 
118
124
 
119
-
120
-
121
125
  何卒アドバイスの程よろしくお願いいたします。

2

タイトルの「比較の方法」を「比較方法」に変更。質問内のurlにリンクをはりました。

2021/08/14 01:58

投稿

Yamachan777
Yamachan777

スコア5

test CHANGED
@@ -1 +1 @@
1
- javascript:2つの日付の比較方法を教えてください。
1
+ javascript:2つの日付の比較方法を教えてください。
test CHANGED
@@ -82,7 +82,7 @@
82
82
 
83
83
  最終的には一番上のサイトの情報が実現したいことに一番近かったので真似ています。
84
84
 
85
- https://zukucode.com/2017/04/javascript-string-date.html
85
+ [https://zukucode.com/2017/04/javascript-string-date.html](https://zukucode.com/2017/04/javascript-string-date.html)
86
86
 
87
87
  JavaScript 文字列を日付オブジェクトに変換する
88
88
 
@@ -106,13 +106,13 @@
106
106
 
107
107
 
108
108
 
109
- https://www.sejuku.net/blog/22867
109
+ [https://www.sejuku.net/blog/22867](https://www.sejuku.net/blog/22867)
110
110
 
111
- https://www.sejuku.net/blog/23115#ltgt
111
+ [https://www.sejuku.net/blog/23115#ltgt](https://www.sejuku.net/blog/23115#ltgt)
112
112
 
113
- https://mebee.info/2020/12/07/post-18467/
113
+ [https://mebee.info/2020/12/07/post-18467/](https://mebee.info/2020/12/07/post-18467/)
114
114
 
115
- http://surferonwww.info/BlogEngine/post/2020/06/27/validation-of-customvalidator-on-client-side.aspx
115
+ [http://surferonwww.info/BlogEngine/post/2020/06/27/validation-of-customvalidator-on-client-side.aspx](http://surferonwww.info/BlogEngine/post/2020/06/27/validation-of-customvalidator-on-client-side.aspx)
116
116
 
117
117
 
118
118
 

1

参考サイト、記事を追記いたしました。

2021/08/14 01:48

投稿

Yamachan777
Yamachan777

スコア5

test CHANGED
File without changes
test CHANGED
@@ -76,4 +76,46 @@
76
76
 
77
77
  ```
78
78
 
79
+
80
+
81
+ 参考にしたサイトの参考箇所は下記の通りです。
82
+
83
+ 最終的には一番上のサイトの情報が実現したいことに一番近かったので真似ています。
84
+
85
+ https://zukucode.com/2017/04/javascript-string-date.html
86
+
87
+ JavaScript 文字列を日付オブジェクトに変換する
88
+
89
+ // str: 日付文字列(yyyy-MM-dd, yyyy/MM/dd)
90
+
91
+ // delim: 区切り文字("-", "/"など)
92
+
93
+ function toDate (str, delim) {
94
+
95
+ var arr = str.split(delim)
96
+
97
+ return new Date(arr[0], arr[1] - 1, arr[2]);
98
+
99
+ };
100
+
101
+
102
+
103
+ var str = '2017/01/02'
104
+
105
+ var date = toDate(str, '/');
106
+
107
+
108
+
109
+ https://www.sejuku.net/blog/22867
110
+
111
+ https://www.sejuku.net/blog/23115#ltgt
112
+
113
+ https://mebee.info/2020/12/07/post-18467/
114
+
115
+ http://surferonwww.info/BlogEngine/post/2020/06/27/validation-of-customvalidator-on-client-side.aspx
116
+
117
+
118
+
119
+
120
+
79
121
  何卒アドバイスの程よろしくお願いいたします。