如何在javascript中检测互联网连接速度和/或带宽?
具有类似函数的isSlow()的东西会很好,因为我真的不明白如何解释连接速度的值,知道什么是慢的,什么不是。
答案 0 :(得分:-1)
window.test_start = new Date();
$.get('10mbfile.dat',function(){
var test_end = new Date();
var result = 10 / (test_end - test_start); // mb/s
});