jquery ajax http status code

后端 未结 2 434
陌清茗
陌清茗 2020-12-16 06:12

I am changing my scripts to jquery at the moment. This is my old javascript:

var request = (window.XMLHttpRequest) ? new XMLHttpRequest() : (window.ActiveXOb         


        
2条回答
  •  有刺的猬
    2020-12-16 06:22

    You need to just bind this request to an event like button click or something Like

    $('#btn').click({function(){
    $.ajax({
        type: "GET",
        url: url,
        data: data,
        success: updatePage
    });
    });
    

    You dont need to really keep this request against a variable as jQuery ajax has a success callback which will help you to execute post success code

提交回复
热议问题