2012年12月25日

JQuery实现N秒自动跳转

摘要: $(document).ready(function() { function jump(count) { window.setTimeout(function(){ count--; if(count > 0) { $('#num').html(count); jump(count); } else { ... 阅读全文

posted @ 2012-12-25 10:11 huilange 阅读(208) 评论(0) 推荐(0) 编辑

导航