使用jQuery或Javascript循环并随机选择一个链接,这样可以绕过缓存?
var messages = ["Good!", "Great!", "Awesome!", "Super!", "Nice!"];
function getMessage() {
return messages[Math.floor(Math.random() * messages.length)];
}
发件人
https://stackoverflow.com/questions/3419928/how-can-i-return-a-random-value-from-an-array