js代码
<script src="js/jquery-3.2.1.min.js"></script> <script src="js/countDown.js"></script> <script type="text/javascript"> $("input[name='countDown']").each(function () { var time_end=this.value; var con=$(this).next("span"); var _=this.dataset; countDown(con,{ title:_.title,//优先级最高,填充在prefix位置 prefix:_.prefix,//前缀部分 suffix:_.suffix,//后缀部分 time_end:time_end//要到达的时间 }) //提供3个事件分别为:启动,重启,停止 .on("countDownStarted countDownRestarted countDownEnded ",function (arguments) { console.info(arguments); }); }); </script>