作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
setInterval(function hello() {
console.log('hello world');
return hello;
}(), 6000);
如何清除间隔,我尝试添加 var 间隔
var i =0;
var interval = setInterval(function hello() {
console.log('world');
if(++i == 3) clearInterval(interval);
return hello;
}(), 5000);
但是没有成功。感谢您的帮助。
最佳答案
clearInterval() 当然有效。以下代码行有错误:
}(), 5000);
//^^ remove () as this is not IIFE
关于javascript - 清除设定间隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34012237/
我想成为 Spark 纱客户(link)。是否需要安装hadoop?还是只安装 yarn 可以吗? (by this link) 最佳答案 No Spark不需要Hadoop即可运行。 Apache
我是一名优秀的程序员,十分优秀!