win8 js点击按钮一次执行函数两次
发布网友
发布时间:2022-04-25 21:35
我来回答
共2个回答
热心网友
时间:2022-04-25 23:05
定义一个计数器,再开一个定时器,定时器里面的代码执行完,计数器加一,当计数器为2时关掉定时器
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>demo01</title>
<script>
window.onload=function()
{
var oBtn=document.getElementById('btn1');
var n=0;
var timer=null;
oBtn.onclick=function()//按钮单击事件
{
clearInterval(timer);//先清空所有定时器
timer=setInterval(function(){
fn();
n++;
if(n==2)
{
clearInterval(timer);
}
},1000);
}
}
function fn()//要执行的函数
{
alert("a");
}
</script>
</head>
<body>
<input type="button" value="单击" id="btn1" />
</body>
</html>
热心网友
时间:2022-04-26 00:23
代码!贴出来……