0523BOM

    新东西BOM

<body>
<input type="button" value="开始" onclick="start()" />
<input type="button" value="结束" onclick="end()" />
</body>

</html>
<script>
// window.setTimeout("alert('123')",1000);
var x = [];

function start() {
x.push(window.setInterval("alert(x)", 1000));
}

function end() {
for(var i = 0; i < x.length; i++) {
window.clearInterval(x[i]);
}
}
</script>

原文地址:https://www.cnblogs.com/qwer123666/p/6894770.html