history

		<script type="text/javascript">
			
//			alert(history.length);
			setTimeout(function(){
//				返回上一个访问记录
				history.back()  ;     ***最重要的用法***
   			},3000);
			
			
		</script>
<body>
		
		<h1>这里是1.HTML</h1>
		<a href="2.html">点这里跳转到2.HTML</a>
		
	</body>

在第二个文件的body中写

	<body>
		
		<h1>这里是2.HTML</h1>
		<a href="3.html">点这里跳转到3.HTML</a>
		
	</body>

location

			setTimeout(function(){
//				跳转
     			location.replace('http://houdunren.com');
     			location.assign'http://houdunren.com');
     			location.href('http://houdunren.com');   //三个都可以用
			},3000)
			

assign()加载文档后会在历史记录里面留下记录
replace()是指替换当前文档,不会留下记录

刷新页面

		<script type="text/javascript">
			
			document.write(Math.random());
			*setTimeout(function(){
				location.reload();
			},1000)*
			 //一秒钟刷新下页面
			
		</script>