页面自动刷新一次

目标:页面首次访问后,自动再重新刷新一次。

原理: 给URL加个随机数的参数,判断有这个参数则不刷新,无这个参数则刷新。

 

function reurl(){
	url = location.href;
	if( url.indexOf("Fresh=") <1 ){
		if( url.indexOf("?") <1 ){
			url = url+"?Fresh="+(Math.floor(Math.random()*100000000+100000000) ); 
		}else{
			url = url+"&Fresh="+(Math.floor(Math.random()*100000000+100000000) ); 
		}
		self.location.replace(url);
	}
}

 

 

 

 

 

 

 

你可能感兴趣的:(⦿,开发技术)