摘要:
// numberMillis 毫秒 function sleep(numberMillis) { var now = new Date(); var exitTime = now.getTime() + numberMillis; while (true) { now = new Date(); if... 阅读全文
摘要:
$(document).ready(function(){ $('body').on('click', '#start_timer', function() { var laydate = $(".layui-laydate"); laydate.hide(); if(laydate && laydate.l... 阅读全文