The difference between setTimeout and setInterval in JS

setTimeout function hello(){ alert(“hello”); } // Execute the method using the method name var t1 = window.setTimeout(hello,1000); var t2 = window.setTimeout(“hello()”,3000);//Execute method using string window.clearTimeout(t1);//Clear timer setInterval //Real-time refresh time unit is milliseconds setInterval('refreshQuery()',8000); /* refresh query */ function refreshQuery(){ $(“#mainTable”).datagrid('reload',null); } Recommended tutorial: “JS Tutorial” The above is the detailed content of the difference between setTimeout and setInterval in JS. For more, please pay attention to other related articles on 1024programmer.com!

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索