JS Timing


Posted in Javascript onApril 21, 2007

使用JS是可以让函数不直接执行的,而是在过了一个指定的时间间隔后才执行。这就叫做事件事件。
With JavaScript, it is possible to execute some code NOT immediately after a function is called, but after a specified time interval. This is called timing events.
使用JS是可以让函数不直接执行的,而是在过了一个指定的时间间隔后才执行。这就叫做事件事件。
JavaScript Timing Events
JS时间事件
With JavaScript, it is possible to execute some code NOT immediately after a function is called, but after a specified time interval. This is called timing events.
使用JS是可以让函数不直接执行的,而是在过了一个指定的时间间隔后才执行。这就叫做事件事件。
It's very easy to time events in JavaScript. The two key methods that are used are:
JS的时间事件是非常简单的。使用了两个关键的方法:
    * setTimeout() - executes a code some time in the future
      在一些时间后执行代码
    * clearTimeout() - cancels the setTimeout()
      取消setTimeout() 
Note: The setTimeout() and clearTimeout() are both methods of the HTML DOM Window object.
注意:setTimeout() 和 Timeout() 都是HTML DOM Window 对象的方法。
setTimeout()
Syntax语法
var t=setTimeout("javascript statement",milliseconds)
The setTimeout() method returns a value - In the statement above, the value is stored in a variable called t. If you want to cancel this setTimeout(), you can refer to it using the variable name.
setTimeout()方法返回一个值 - 在上面的声明里,值被保存在变量t中。如果你想取消这个setTimeout()可以使用变量名来提出它(用clearTimeout(t))
The first parameter of setTimeout() is a string that contains a JavaScript statement. This statement could be a statement like "alert('5 seconds!')" or a call to a function, like "alertMsg()".
setTomeout()的第一个参数是字符串声明。它可以像"alert('5 seconds!')"或是调用一个函数像"alertMsg()"
The second parameter indicates how many milliseconds from now you want to execute the first parameter.
第二个参数用来表明从现在开始你希望在多少毫秒后执行第一个参数
Note: There are 1000 milliseconds in one second.
1000毫秒为一秒
Example
举例
When the button is clicked in the example below, an alert box will be displayed after 5 seconds.
当下面的按钮被点击后,每过5秒就会出现一个警告框。
<html>
<head>
<script type="text/javascript">
function timedMsg()
{
var t=setTimeout("alert('5 seconds!')",5000)
}
</script>
</head>
<body>
<form>
<input type="button" value="Display timed alertbox!"
onClick="timedMsg()">
</form>
</body>
</html>
Example - Infinite Loop
无限循环
To get a timer to work in an infinite loop, we must write a function that calls itself. In the example below, when the button is clicked, the input field will start to count (for ever), starting at 0:
要得到一个无限循环的记时器,我们必须写出一个自我调用的函数。下面的例子,当按钮按下后,输入框就会从0开始记数(永远的)
<html>
<head>
<script type="text/javascript">
var c=0
var t
function timedCount()
{
document.getElementById('txt').value=c
c=c+1
t=setTimeout("timedCount()",1000)
}
</script>
</head>
<body>
<form>
<input type="button" value="Start count!"
onClick="timedCount()">
<input type="text" id="txt">
</form>
</body>
</html>
clearTimeout()
Syntax语法
clearTimeout(setTimeout_variable)
Example
举例
The example below is the same as the "Infinite Loop" example above. The only difference is that we have now added a "Stop Count!" button that stops the timer:
下面的例子和上面的“无限循环”差不多。唯一的不同就是我们现在多了一个“停止记数”的按钮来停止记时器。
<html>
<head>
<script type="text/javascript">
var c=0
var t
function timedCount()
{
document.getElementById('txt').value=c
c=c+1
t=setTimeout("timedCount()",1000)
}
function stopCount()
{
clearTimeout(t)
}
</script>
</head>
<body>
<form>
<input type="button" value="Start count!"
onClick="timedCount()">
<input type="text" id="txt">
<input type="button" value="Stop count!"
onClick="stopCount()">
</form>
</body>
</html>

Javascript 相关文章推荐
模仿jQuery each函数的链式调用
Jul 22 Javascript
让Firefox支持event对象实现代码
Nov 07 Javascript
js动态在form上插入enctype=multipart/form-data的问题
May 24 Javascript
node.js 开发指南 ? Node.js 连接 MySQL 并进行数据库操作
Jul 29 Javascript
angularjs学习笔记之完整的项目结构
Sep 26 Javascript
详解Vue.js分发之作用域槽
Jun 13 Javascript
JavaScript表单即时验证 验证不成功不能提交
Aug 31 Javascript
微信小程序实现左右联动的实战记录
Jul 05 Javascript
vue-cli webpack 引入swiper的操作方法
Sep 15 Javascript
30分钟快速实现小程序语音识别功能
Nov 27 Javascript
vue在index.html中引入静态文件不生效问题及解决方法
Apr 29 Javascript
Vue3 响应式侦听与计算的实现
Nov 11 Javascript
运用Windows XP附带的Msicuu.exe、Msizap.exe来彻底卸载顽固程序
Apr 21 #Javascript
JS 建立对象的方法
Apr 21 #Javascript
如何做到打开一个页面,过几分钟自动转到另一页面
Apr 20 #Javascript
用javascript将数据库中的TEXT类型数据动态赋值到TEXTAREA中
Apr 20 #Javascript
在textarea中显示html页面的javascript代码
Apr 20 #Javascript
textarea的value是html文件源代码,存成html文件的代码
Apr 20 #Javascript
在textarea中屏蔽js的某个function的javascript代码
Apr 20 #Javascript
You might like
php连接odbc数据源并保存与查询数据的方法
2014/12/24 PHP
Laravel 集成 Geetest验证码的方法
2018/05/14 PHP
浅析jQuery中常用的元素查找方法总结
2013/07/04 Javascript
For循环中分号隔开的3部分的执行顺序探讨
2014/05/27 Javascript
JavaScript实现简单图片滚动附源码下载
2014/06/17 Javascript
JavaScript实现的GBK、UTF8字符串实际长度计算函数
2014/08/27 Javascript
jQuery自动添加表单项的方法
2015/07/13 Javascript
jQuery改变form表单的action,并进行提交的实现代码
2016/05/25 Javascript
详解JavaScript时间处理之几个月前或几个月后的指定日期
2016/12/21 Javascript
JS实现json的序列化和反序列化功能示例
2017/06/13 Javascript
jQuery:unbind方法的使用详解
2017/08/14 jQuery
React Native 集成jpush-react-native的示例代码
2017/08/16 Javascript
vue动态添加路由addRoutes之不能将动态路由存入缓存的解决
2019/02/19 Javascript
vue中多路由表头吸顶实现的几种布局方式
2019/04/12 Javascript
Python模块搜索概念介绍及模块安装方法介绍
2015/06/03 Python
python使用matplotlib绘制折线图教程
2017/02/08 Python
matplotlib简介,安装和简单实例代码
2017/12/26 Python
python3 图片referer防盗链的实现方法
2018/03/12 Python
目前最全的python的就业方向
2018/06/05 Python
使用tensorflow实现线性回归
2018/09/08 Python
python装饰器的特性原理详解
2019/12/25 Python
Pandas中DataFrame基本函数整理(小结)
2020/07/20 Python
英国轻奢珠宝品牌:Astley Clarke
2016/12/18 全球购物
请介绍一下WSDL的文档结构
2013/03/17 面试题
入党思想汇报
2014/01/05 职场文书
优秀士兵个人事迹材料
2014/01/19 职场文书
优秀医生事迹材料
2014/02/12 职场文书
学生请假条
2014/04/11 职场文书
乡镇创先争优活动总结
2014/08/28 职场文书
我与祖国共奋进演讲稿
2014/09/13 职场文书
个人贷款收入证明
2014/10/26 职场文书
维稳承诺书
2015/01/20 职场文书
建筑技术负责人岗位职责
2015/04/13 职场文书
2015年教学副校长工作总结
2015/07/22 职场文书
java中如何截取字符串最后一位
2022/07/07 Java/Android
MySQL分布式恢复进阶
2022/07/23 MySQL