How can I refresh a page with jQuery?

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

How can I refresh a page with jQuery?

28条回答
  •  余生分开走
    2020-11-22 07:16

    The jQuery Load function can also perform a page refresh:

    $('body').load('views/file.html', function () {
        $(this).fadeIn(5000);
    });
    

提交回复
热议问题