回答編集履歴

1

見直し

2018/11/29 03:15

投稿

退会済みユーザー
test CHANGED
@@ -21,3 +21,29 @@
21
21
  ```
22
22
 
23
23
  などとして日付を送信しないといけないのではないかと。
24
+
25
+
26
+
27
+ [dayClick and selectable dates/times - Demos | FullCalendar](https://fullcalendar.io/docs/date-clicking-selecting-demo)
28
+
29
+ デモサイトでは、
30
+
31
+ ```
32
+
33
+ select: function(startDate, endDate) {
34
+
35
+ alert('selected ' + startDate.format() + ' to ' + endDate.format());
36
+
37
+ }
38
+
39
+ ```
40
+
41
+ って書いてあるので、それに準じると
42
+
43
+ ```
44
+
45
+ window.location = "/project/view/listDetail.php?start="+start.format()+"&end="+end.format();
46
+
47
+ ```
48
+
49
+ ってことになるでしょうか。