十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
方法:function wait(seconds){
成都做网站、成都网站制作服务团队是一支充满着热情的团队,执着、敏锐、追求更好,是创新互联的标准与要求,同时竭诚为客户提供服务是我们的理念。成都创新互联公司把每个网站当做一个产品来开发,精雕细琢,追求一名工匠心中的细致,我们更用心!
//code
}
调用时直接用
..
wait(10);
...
来实现等待10秒的功能,而不用调用 settimeout 或 setinterval,用上面的方法就可以实现。
可以设置一个全局的变量 async 名称什么的可以随便取这里只是方便下面给出一份演示
!DOCTYPE html
html
head
title/title
/head
body
div id="d"请点击button过后移入我才会改变/div
button id="b"点我/button
script type="text/javascript"
var async=false;
//这里就不做兼容了
document.getElementById("b").addEventListener("click",function(){
async=true;
});
document.getElementById("d").addEventListener("mouseover",function(){
if(async){
this.innerHTML="我改变了哦";
}
});
/script
/body
/html
楼上的只是等待一秒后执行相应的函数,但要"继续执行后面的程序"(同一个函数)就不行了
script language="javascript"
/*Javascript中暂停功能的实现
Javascript本身没有暂停功能(sleep不能使用)同时 vbscript也不能使用doEvents,故编写此函数实现此功能。
javascript作为弱对象语言,一个函数也可以作为一个对象使用。
比如:
function Test(){
alert("hellow");
this.NextStep=function(){
alert("NextStep");
}
}
我们可以这样调用 var myTest=new Test();myTest.NextStep();
我们做暂停的时候可以吧一个函数分为两部分,暂停操作前的不变,把要在暂停后执行的代码放在this.NextStep中。
为了控制暂停和继续,我们需要编写两个函数来分别实现暂停和继续功能。
暂停函数如下:
*/
function Pause(obj,iMinSecond){
if (window.eventList==null) window.eventList=new Array();
var ind=-1;
for (var i=0;iwindow.eventList.length;i++){
if (window.eventList[i]==null) {
window.eventList[i]=obj;
ind=i;
break;
}
}
if (ind==-1){
ind=window.eventList.length;
window.eventList[ind]=obj;
}
setTimeout("GoOn(" + ind + ")",iMinSecond);
}
/*
该函数把要暂停的函数放到数组window.eventList里,同时通过setTimeout来调用继续函数。
继续函数如下:
*/
function GoOn(ind){
var obj=window.eventList[ind];
window.eventList[ind]=null;
if (obj.NextStep) obj.NextStep();
else obj();
}
/*
该函数调用被暂停的函数的NextStep方法,如果没有这个方法则重新调用该函数。
函数编写完毕,我们可以作如下册是:
*/
function Test(){
alert("hellow");
Pause(this,3000);//调用暂停函数
this.NextStep=function(){
alert("NextStep");
}
}
Test();
/script
以前收藏的,很经典!!!
在JavaScript中提供了定时执行函数setTimeout:
setTimeout() 方法用于在指定的毫秒数后调用函数或计算表达式。
语法
setTimeout(code,millisec)
参数
描述
code 必需。要调用的函数后要执行的 JavaScript 代码串。
millisec 必需。在执行代码前需等待的毫秒数。
用法如下:
html
head
script type="text/javascript"
function timedMsg()
{
var t=setTimeout("alert('5 seconds!')",5000) //等待5秒执行alert
}
/script
/head
body
form
input type="button" value="Display timed alertbox!"
onClick="timedMsg()"
/form
pClick on the button above. An alert box will be
displayed after 5 seconds./p
/body
/html
需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的body标签中输入:button onclick="setTimeout(send, 1000)"btn/button,script标签中输入js代码:function send() {document.body.innerText = 'use send';}。
3、浏览器运行index.html页面,点击btn按钮。
4、等待1秒后,确实执行了send()方法打印了“use send”文本。