找回密码
 注册
搜索
热搜: 回贴

setTimeout 的用法详细介绍

2009-12-16 02:40| 发布者: admin| 查看: 44| 评论: 0|原作者: 江月

例子:

onclick="fnHide(this)">

解释:
Evaluates an expression after a specified number of milliseconds has elapsed.
Syntax
iTimerID = window.setTimeout(vCode, iMilliSeconds [, sLanguage])
Parameters
vCodeRequired. Variant that specifies the function pointer or string that indicates the code to be executed when the specified interval has elapsed.
iMilliSecondsRequired. Integer that specifies the number of milliseconds.
sLanguageOptional. String that specifies one of the following values:
JScriptLanguage is JScript.
VBScriptLanguage is VBScript.
JavaScriptLanguage is JavaScript.


Return Value
Integer. Returns an identifier that cancels the evaluation with the clearTimeout method.
Remarks
In versions earlier than Microsoft? Internet Explorer 5, the first argument of setTimeout must be a string. Evaluation of the string is deferred until the specified interval elapses.
As of Internet Explorer 5, the first argument of setTimeout can be a string or a function pointer.
The specified expression or function is evaluated once. For repeated evaluation, use the setInterval method.
When you use the setTimeout method with Introduction to DHTML Behaviors, the value of vCode should be a function pointer to call a function within the HTML Component (HTC) file or a string to call a function in the primary document.

Made in blog.csdn.net/leavecd
欢迎转载。

最新评论

QQ|小黑屋|最新主题|手机版|微赢网络技术论坛 ( 苏ICP备08020429号 )

GMT+8, 2024-9-30 11:26 , Processed in 0.083389 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

返回顶部