質問編集履歴
1
deliveryDateのところ
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,6 +68,36 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
+
恐らくdeliveryDateをいれようとするとエラーになるようです。
|
72
|
+
|
73
|
+
```jsp
|
74
|
+
|
75
|
+
<td>お届け日<input type="text" name="deliveryDate" id="input"></td>
|
76
|
+
|
77
|
+
<script>
|
78
|
+
|
79
|
+
$(function() {
|
80
|
+
|
81
|
+
$.datepicker.setDefaults($.datepicker.regional["ja"]);
|
82
|
+
|
83
|
+
$('#date').datepicker({ dateFormat: 'yy-mm-dd' });
|
84
|
+
|
85
|
+
$("#input").datepicker({
|
86
|
+
|
87
|
+
minDate: '-1w', //本日の1週間前から
|
88
|
+
|
89
|
+
maxDate: '+1m +10d' //本日の1か月と10日後まで
|
90
|
+
|
91
|
+
});
|
92
|
+
|
93
|
+
});
|
94
|
+
|
95
|
+
</script>
|
96
|
+
|
97
|
+
```
|
98
|
+
|
99
|
+
|
100
|
+
|
71
101
|
```ここに言語を入力
|
72
102
|
|
73
103
|
重大: Servlet.service() for servlet [jsp] in context with path [/FlowerSystem] threw exception [An exception occurred processing JSP page /orderConfirm.jsp at line 22
|