0

I want to write JS that checks the speed of the internet and displays standard/basic version accordingly. Means, when the internet is slow, I want to display a basic page and when the internet is fast, I want to display advanced page.

4

1 回答 1

1

首先向用户显示一个测试页面,其中包含“请稍候,正在测试连接”之类的消息。从此页面进行 AJAX 调用以加载一些简单的静态内容并确定需要多长时间。将该时间发送回服务器端脚本(JSP、PHP 等),让它根据结果决定服务哪个页面,基本的还是高级的。

于 2013-10-04T18:35:52.987 回答