有什么方法可以知道 Web 服务器响应何时发送到客户端,在传统的回发中,以便我可以执行 jQuery 函数?
例如,div
不使用
Page.RegisterStartUpScript("<script type="text/javasctip">alert('Succeed')</script>);
也不
var request = $.ajax({
url: "page/someWebMethod",
type: "POST",
data: {id : menuId},
dataType: "html"
});
request.done(function(msg) {
$('DivOk').show();
});