Your Ad Here
首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 网站建设 > ASP > setTimeout 的用法详介
【标  题】:setTimeout 的用法详介
【关键字】:setTimeout
【来  源】:http://blog.csdn.net/leavecd/archive/2006/04/01/646502.aspx

setTimeout 的用法详介

Your Ad Here  
例子:
<SCRIPT>
var g_oToHide = null;
function fnHide(oToHide){
g_oToHide = oToHide;
window.setTimeout(fnHide2, 3000);
}
function fnHide2(sID){
if (g_oToHide) {
g_oToHide.style.display="none";
}
}
</SCRIPT>
<INPUT TYPE=button VALUE="Now you see me ..." ID="oHideButton"
onclick="fnHide(this)">
 
解释:
Evaluates an expression after a specified number of milliseconds has elapsed.
Syntax
iTimerID = window.setTimeout(vCode, iMilliSeconds [, sLanguage])
Parameters

vCode
Required. Variant that specifies the function pointer or string that indicates the code to be executed when the specified interval has elapsed.
iMilliSeconds
Required. Integer that specifies the number of milliseconds.
sLanguage
Optional. String that specifies one of the following values:
JScript
Language is JScript.
VBScript
Language is VBScript.
JavaScript
Language 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.
 
欢迎转载。
Google Web APIs 参考中文版:【上一篇】
“单击将本站加入收藏夹”的代码:【下一篇】
【相关文章】
  • SetTimeOut方法用法示例
  • 【随机文章】
  • 快速发展的Java
  • 时间到了 v1.5 简单注册算法分析 + 注册机源代码(tc2)
  • 终于在Vmware上成功安装FreeBSD 6.0-Beta.4
  • Win2K无盘终端网组建全攻略(1)
  • 使用IP过滤,轻松管理网络(1)
  • XML基础 (3)
  • Apache2 httpd.conf 中文版
  • Vista Sidebar Gadget开发技巧几则
  • PHP中可以避免乱码的截取汉字
  • Javascript常犯的一个错误
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 bbb软讯网络 All Rigths Reserved.