Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Created July 14, 2016 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlid/a20f4334996e1c174118f73c87d44810 to your computer and use it in GitHub Desktop.
Save ryanlid/a20f4334996e1c174118f73c87d44810 to your computer and use it in GitHub Desktop.
返回上一页的几种写法~
<a href="javascript:history.go(-1)">返回上一页</a>
<a href="javascript:location.reload()">刷新当前页面</a>
<a href="javascript:" onclick="history.go(-2); ">返回前两页</a>
<a href="javascript:" onclick="self.location=document.referrer;">返回上一页并刷新</a>
<a href="javascript:" onclick="history.back(); ">返回上一页</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment