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

计数器方法使用?

时间:2014-12-07 20:19:23      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   color   使用   sp   java   strong   

setInterval(f,1000);       设置计时器

clearInterval(screen_time);    清除计时器

<div class="cg_content">
<div class="success">
<img src="images/success.png">
<span>恭喜您 注册成功!</span>
</div>
<p>页面将在 <b>5</b> 秒内自动跳转到<a href="javascript:void(0)" onclick="tiger();"> 微信首页</a></p>
</div>
<div class="zc_footer"></div>
<script type="text/javascript" src="jquery-1.11.1.min.js"></script>


<script type="text/javascript">
$(document).ready(function(){
var i = 5;
var f = function(){
i--;
$(".cg_content p b").text(i);
if(i == 0){
clearInterval(screen_time);
window.location=‘http://www.baidu.com‘;
}
// alert(screen_time);
}
var screen_time = setInterval(f,1000);

});


</script>
<script type="text/javascript">
function tiger(){
window.location=‘http://www.sina.com‘;
}

</script>

计数器方法使用?

标签:style   http   io   ar   color   使用   sp   java   strong   

原文地址:http://www.cnblogs.com/jiechn/p/4149745.html

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