質問編集履歴
1
deliveryDateのところ
title
CHANGED
File without changes
|
body
CHANGED
@@ -33,6 +33,21 @@
|
|
33
33
|
この際、sqlのDate型に変換しようとすると
|
34
34
|
java.lang.IllegalArgumentExceptionのエラーが出ました。
|
35
35
|
|
36
|
+
恐らくdeliveryDateをいれようとするとエラーになるようです。
|
37
|
+
```jsp
|
38
|
+
<td>お届け日<input type="text" name="deliveryDate" id="input"></td>
|
39
|
+
<script>
|
40
|
+
$(function() {
|
41
|
+
$.datepicker.setDefaults($.datepicker.regional["ja"]);
|
42
|
+
$('#date').datepicker({ dateFormat: 'yy-mm-dd' });
|
43
|
+
$("#input").datepicker({
|
44
|
+
minDate: '-1w', //本日の1週間前から
|
45
|
+
maxDate: '+1m +10d' //本日の1か月と10日後まで
|
46
|
+
});
|
47
|
+
});
|
48
|
+
</script>
|
49
|
+
```
|
50
|
+
|
36
51
|
```ここに言語を入力
|
37
52
|
重大: Servlet.service() for servlet [jsp] in context with path [/FlowerSystem] threw exception [An exception occurred processing JSP page /orderConfirm.jsp at line 22
|
38
53
|
|