时间:2024-10-13 20:50:26
1、setInterval的特点一直循环调用函数,不会自己停止
2、function jump(){ alert("5秒")}setInt=setInterval("jump()",2000);