jquery fadeout, load, fadein

后端 未结 4 1549
無奈伤痛
無奈伤痛 2020-12-16 16:59

I am using JQuery and what I want to happen is.

Div fades out using the fadeOut command. It then loads content from a url using the load command. Then once content

4条回答
  •  离开以前
    2020-12-16 17:23

    you can use the load() callback function like this:

    $("#myDiv").fadeOut().load("www.someurl.com", function(response, status, xhr) {
        $(this).fadeIn();
    });
    

    you might want to use the status of the load() call to see if everything was completed properly.

    $("#myDiv").fadeOut().load("www.someurl.com", function(response, status, xhr) {
        if (status == "error") {
            // handle error
        }
        else
        {
            $(this).fadeIn();
        }
    });
    

提交回复
热议问题