1、使用按钮

<input type=button value=刷新 onclick="window.location.reload()"> 
<input type=button value=前进 onclick="window.history.go(1)"> 
<input type=button value=后退 onclick="window.history.go(-1)"> 
<input type=button value=前进 onclick="window.history.forward()"> 

2、使用URL

<a href="JavaScript:window.location.reload()">刷新</a>
<a href="JavaScript:history.Go(-1)">后退</a>
<a href="JavaScript:history.Go(1)">前进</a> 
<a href="JavaScript:history.forward()">前进</a>

 

  

 

相关文章:

  • 2021-12-05
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-15
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-10
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案