0

我下载了一个网站,我将离线使用。但我希望它像在服务器上一样。我的意思是加载时间。当我离线工作时,所有项目的加载速度都非常快。我想让它像图像上一样。

我可以在 html css javascript 文件中添加什么。我可以使用 sleep() 或 wait() 函数吗?

4

2 回答 2

0

不要那样做,因为这需要付出很大的努力,但结果令人怀疑。如果要测量性能,唯一正确的方法是在服务器上进行。

于 2013-07-31T07:45:14.533 回答
0

As javascript isn't multithreaded, you can't make the website to stop everything and wait but what you can do is, create a function for your own:

function sleep(delayTime) {
    var start = new Date().getTime();
    while (new Date().getTime() < start + delay){
        // do nothing
    }
}

Call this function wherever you want with a number representing the delay that you want.

于 2013-07-31T07:50:27.740 回答