页面加载完后刷新

// 页面加载完后刷新
function fresh()
{
if(location.href.indexOf("?reload=true")<0)
{
location.href+="?reload=true";
}
}
setTimeout("fresh()",50)
原文地址:https://www.cnblogs.com/supereast/p/10704218.html