Skip to content

Instantly share code, notes, and snippets.

@ryanlid
Created July 14, 2016 01:32
Embed
What would you like to do?
返回上一页的几种写法~
<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