Refresh a div with jQuery

前端 未结 4 1320
無奈伤痛
無奈伤痛 2021-01-20 03:27

Is it possible to refresh a single div with jQuery? I have a button that does logout a user. After the button is clicked, I want to show the login form, so I need to re-pars

4条回答
  •  梦毁少年i
    2021-01-20 04:05

    as you have your session method inside of your tag, you can do on success event following:

    success: function(data){
            $("#signup").load(".register");
        } 
    

    it will reload everything inside of < div id="signup" class="register"> and as you've removed your session (i suppose), than it will be reload to your login/logout form.

提交回复
热议问题