()
| 259 | return (today == monthLast2Day); |
| 260 | } |
| 261 | function submitReply() { |
| 262 | $.ajax({ |
| 263 | type: form.attr('method'), |
| 264 | url: form.attr('action'), |
| 265 | data: form.serialize(), |
| 266 | success: function (res) { |
| 267 | if (res.indexOf("發貼完畢點擊進入主題列表") == -1) { |
| 268 | replyFail(); |
| 269 | alert($(res).find("ol").text() || $(res).find("center").text()); |
| 270 | quickReply.removeAttr("disabled"); |
| 271 | } else { |
| 272 | replySuccess(); |
| 273 | } |
| 274 | }, |
| 275 | fail: function (e) { |
| 276 | replyFail(); |
| 277 | quickReply.removeAttr("disabled"); |
| 278 | } |
| 279 | }); |
| 280 | } |
| 281 | if (isCheckIn && isRushTime()) { |
| 282 | let reachRushMinute = false; |
| 283 | var rushReply = $( `<input style="margin-left: 10px" class="btn" type="button" value="定時搶簽">` ); |
no test coverage detected