Handling the OnRequestStart and OnResponseEnd Client Events

来源:互联网 发布:淘宝摄影产品拍照商家 编辑:程序博客网 时间:2024/05/21 00:48
function RequestStart(sender, args){if (isAjaxActive){args.set_cancel(true); }else{isAjaxActive = true;document.body.style.cursor = "wait";}}
function ResponseEnd(sender, args){isAjaxActive = false;document.body.style.cursor = "default";} 

原创粉丝点击