gpt4 book ai didi

javascript - 如何统计一个UpdatePanel的进度?

转载 作者:行者123 更新时间:2023-11-30 18:41:32 25 4
gpt4 key购买 nike

我需要计算页面内 UpdatePanel 的呈现时间。有人知道怎么做吗?

提前致谢。

最佳答案

您可以订阅 beginRequestendRequest回调并计算它们之间耗时。

function pageLoad() {
var manager = Sys.WebForms.PageRequestManager.getInstance();
if (manager != null) {
manager.add_beginRequest(Request_Begin);
manager.add_endRequest(Request_End);
}
}

function Request_Begin(sender, args)
{
// TODO: start your timer here (new Date())
}

function Request_End(sender, args) {
// TODO: get the current date and measure the difference
// with theone obtained in the beginRequest
}

following thread将帮助您实现我留在代码中的 TODO。

关于javascript - 如何统计一个UpdatePanel的进度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6736900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com