博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
interval
阅读量:4952 次
发布时间:2019-06-12

本文共 417 字,大约阅读时间需要 1 分钟。

$("#text").focus(function(){        var startTime = new Date().getTime();        var interval = setInterval(function(){            $("title").html(Math.random(10))            $("#text").scrollIntoView(true);            if(new Date().getTime() - startTime > 800){                clearInterval(interval);                return;            }        }, 100);    })

 

转载于:https://www.cnblogs.com/beimingbingpo/p/9895020.html

你可能感兴趣的文章
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
sql 语法大全
查看>>
SQLite移植手记1
查看>>
Java AmericanFlagSort
查看>>
Mysql远程连接报错
查看>>
C# windows程序应用与JavaScript 程序交互实现例子
查看>>
sqlServer去除字段中的中文
查看>>
HashMap详解
查看>>
Adobe Scout 入门
查看>>
51nod 1247可能的路径
查看>>
js05-DOM对象二
查看>>
mariadb BINLOG_FORMAT = STATEMENT 异常
查看>>
C3P0 WARN: Establishing SSL connection without server's identity verification is not recommended
查看>>
iPhone在日本最牛,在中国输得最慘
查看>>
动态方法决议 和 消息转发
查看>>
WPF自定义搜索框代码分享
查看>>
js 基础拓展
查看>>
SpringBoot访问html访问不了的问题
查看>>
{width=200px;height=300px;overflow:hidden}
查看>>
C#生成随机数
查看>>