Page auto reload with parameters

前端 未结 3 680
一个人的身影
一个人的身影 2020-12-20 00:30

I am trying to autoreload my page after every 20 seconds. I am using JavaScript for this instead of the .

I have and here is

3条回答
  •  北海茫月
    2020-12-20 00:52

     setTimeout('window.location.replace(window.location.href)', 2000);
    

    did the trick

提交回复
热议问题