Run javascript function after Postback

后端 未结 5 1112
孤独总比滥情好
孤独总比滥情好 2020-11-29 03:54

How do i run a javascript event after a postback within an updatepanel

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 04:44

    Try this:

    $.ajax({
    beforeSend: function(){
    // Handle the beforeSend event
    },
    complete: function(){
    // Handle the complete event
    }
    // ......
    });
    

提交回复
热议问题