function in setInterval() executes without delay

前端 未结 4 652
广开言路
广开言路 2020-12-02 00:49

I am in the process of making a jquery application to hide an image after a specified interval of time by using setInterval(). The problem is that the hide image function ex

4条回答
  •  北海茫月
    2020-12-02 01:44

    Change setInterval(change(), 99999999); to setInterval(change, 99999999);

    And 99999999 means 99999999 milliseconds as you known.

提交回复
热议问题