博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
setTimeout()使用
阅读量:5928 次
发布时间:2019-06-19

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

Basic setTimeout() Example

setTimeout(function() {      // Do something after 5 seconds}, 5000);

Tip: you can use the ClearTimeout() function to clear any timer values previously stored.

timeout = setTimeout('timeout_trigger()', 3000);clearTimeout(timeout);

More setTimeout() Examples

jQuery(document).ready(function () {    //hide a div after 3 seconds    setTimeout( "jQuery('#div').hide();",3000 );});

Or in a different way:

jQuery(document).ready(function () {    //hide a div after 3 seconds    setTimeout(function(){ jQuery("#div").hide(); }, 3000);});

Or as a function:

 案例:

var timeover;     var timeout;     $(".namelistul li img").mouseover(function(){               clearTimeout(timeover);               clearTimeout(timeout);               var namelistli = $(this).parent();//父节点            timeover = setTimeout(function() {                  if(namelistli.has("span").length==0){                   var $span = $("");                   $(namelistli).prepend($span);                                      }            }, 150);            //删除其他的span               namelistli.siblings().find("span").remove();                                });    $("body").on("mouseout", '.namelistdel', function(){        clearTimeout(timeover); //鼠标离开解除延迟        clearTimeout(timeout);        timeout = setTimeout(function() {                  $(".namelistdel").remove();            }, 150);      });

转载地址:http://jbrvx.baihongyu.com/

你可能感兴趣的文章
# 180111php编译错误
查看>>
js闭包
查看>>
度量时间差
查看>>
MySQL 5.6为什么关闭元数据统计信息自动更新&统计信息收集源代码探索
查看>>
apache prefork模式优化错误
查看>>
jmeter高级用法例子,如何扩展自定义函数
查看>>
lvs
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
JS页面刷新保持数据不丢失
查看>>
清橙A1202&Bzoj2201:彩色圆环
查看>>
使用data pump工具的准备
查看>>
springMVC---级联属性
查看>>
get和post区别
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
Floodlight 在 ChannelPipeline 图
查看>>
leetcode-Word Ladder II
查看>>
VS2017调试闪退之Chrome
查看>>
做移动互联网App,你的测试用例足够吗?
查看>>
cmd.exe启动参数说明
查看>>
私活利器,docker快速部署node.js应用
查看>>