避免了页面缓存问题。
rand = Math.random();
$("a").each(function () {
href = $(this).attr("href");
if (href.length == 0 || href.indexOf("javascript") > -1) return;
else if (href.indexOf("?") > -1) {
$(this).attr("href", href + "&" + rand);
}
else {
$(this).attr("href", href + "?" + rand);
}
});
rand = Math.random();
$("a").each(function () {
href = $(this).attr("href");
if (href.length == 0 || href.indexOf("javascript") > -1) return;
else if (href.indexOf("?") > -1) {
$(this).attr("href", href + "&" + rand);
}
else {
$(this).attr("href", href + "?" + rand);
}
});