C/C++教程

开始setInterval 停止clearInterval 函数

本文主要是介绍开始setInterval 停止clearInterval 函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>setInterval使用方法</title>
<style type="text/css">
.com {
width: 200px;
height: 30px;
background-color: burlywood;
/* color: orange; */
line-height: 30px;
font-family: serif;
text-align: center;
}

.hand {
display: inline-block;
background: #333;
border-radius: 4px;
width: 28px;
height: 28px;
margin: 0 5px;
font-size: 18px;
color: #fff;
vertical-align: middle;
text-align: center;
line-height: 28px;
}
</style>
</head>

<body>
<script type="text/javascript">
window.addEventListener('load', function() {
var stop = document.querySelector('.stop');
var b = document.querySelector('.begin');
// b.addBehavior('click')
var timer = null;
b.addEventListener('click', function() {
timer = setInterval(function() {
console.log('开始计时');
}, 1000)
})
stop.addEventListener('click',function(){
clearInterval(timer);
})
})
</script>
<button class="stop">停止</button>
<button class="begin">开始</button>
</body>

</html>

这篇关于开始setInterval 停止clearInterval 函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!