質問編集履歴

1

試したコードとエラーを追記

2020/02/08 11:56

投稿

babirudebiruba
babirudebiruba

スコア16

test CHANGED
File without changes
test CHANGED
@@ -115,3 +115,77 @@
115
115
 
116
116
 
117
117
  よろしくお願いします。
118
+
119
+
120
+
121
+ #追記
122
+
123
+
124
+
125
+ ネットで調べると、時間の取り出し方は書いてあったのですが、それの使い方がいまいちわかりませんでした。
126
+
127
+ 適当に書いてみたのを載せておきます。
128
+
129
+
130
+
131
+ エラーはUncaught ReferenceError: nowDatetime is not definedですが、そもそも記述方法間違えていると思いますので...
132
+
133
+
134
+
135
+ ```jQuery
136
+
137
+ $(function(){
138
+
139
+ setInterval(function(){
140
+
141
+ $(document).ready(function() {
142
+
143
+ $(".view_timer").each(function(index, target) {
144
+
145
+ var hour = nowDatetime.getHours();
146
+
147
+ var minute = nowDatetime.getMinutes();
148
+
149
+ var second = nowDatetime.getSeconds();
150
+
151
+ var startDate = $(this).attr("data-start-date");
152
+
153
+ var endDate = $(this).attr("data-end-date");
154
+
155
+ var nowDate = ("minute+second");
156
+
157
+ if (startDate) {
158
+
159
+ startDate = new Date(startDate);
160
+
161
+ } else {
162
+
163
+ startDate = nowDate;
164
+
165
+ }
166
+
167
+ if (endDate) {
168
+
169
+ endDate = new Date(endDate);
170
+
171
+ }
172
+
173
+ if (startDate <= nowDate && (!endDate || nowDate <= endDate)) {
174
+
175
+ $(this).show();
176
+
177
+ } else {
178
+
179
+ $(this).hide();
180
+
181
+ }
182
+
183
+ });
184
+
185
+ },4000);
186
+
187
+ });
188
+
189
+ });
190
+
191
+ ```