摘要: function countDown(){ var time = $(".e-time strong").text(); $(".e-time strong").text(time - 1); if (time == 1) { $(".timeDiv").hide(); $(".sendMobileCode").show(); $(".e-time strong").text(119); } else { setTimeout(countDown, 1000); }}或者var counttim 阅读全文
posted @ 2014-03-28 11:35 sony静 阅读(407) 评论(0) 推荐(0) 编辑