setInterval函数正当使用是不会占用过多内存的 除非你周期性调用的函数不正当的使用了内存你可以试试这样写会不会卡var counter = 0;function fun () { // something you want to do if (counter >= 150) return; counter++; setTimeout(fun, millisec); }