How can I refresh a page with jQuery?

后端 未结 28 2518
刺人心
刺人心 2020-11-22 07:00

How can I refresh a page with jQuery?

28条回答
  •  难免孤独
    2020-11-22 07:15

    $(document).on("click", "#refresh_btn", function(event) 
    {
         window.location.replace(window.location.href);
    });
    

提交回复
热议问题