码迷,mamicode.com
首页 > 其他好文 > 详细

按钮倒计时

时间:2018-11-01 01:06:04      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:tle   interval   html   title   cti   ice   rip   inter   type   

【转自】按钮倒计时

<a id="submit" class="pointer folwbtn">同意(<span id="tdown">9</span>)</a>

<script type="text/javascript">
$(function () {
var cout = 9;
var cdown = setInterval(fndown, 1000);
function fndown() {
$("#tdown").text(cout);
if (cout == 0) {
clearInterval(cdown);
$("#submit").attr("href", "<%= linkurl("services","form") %>").text("同意服务协议");
}
cout--;
}
});
</script>

按钮倒计时

标签:tle   interval   html   title   cti   ice   rip   inter   type   

原文地址:https://www.cnblogs.com/liyuspace/p/9886482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!