1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| 秒杀
<script> $(function () { countDown(); });
function countDown() { var remainSeconds = $("#remainSeconds").val(); var timeout; if (remainSeconds > 0) { $("#buyButton").attr("disabled", true); timeout = setTimeout(function () { $("#countDown").text(remainSeconds - 1); $("#remainSeconds").val(remainSeconds - 1); countDown(); }, 1000); } else if (remainSeconds == 0) { $("#buyButton").attr("disabled", false); if (timeout) { clearTimeout(timeout); } $("#miaoshaTip").html("秒杀进行中"); } else { $("#buyButton").attr("disabled", true); $("#miaoshaTip").html("秒杀已经结束"); } }
|
Author:
John Doe
Permalink:
http://yoursite.com/2019/08/09/前端/Jquery/
License:
Copyright (c) 2019 CC-BY-NC-4.0 LICENSE
Slogan:
Do you believe in DESTINY?