table编辑后返回上一页并刷新


最终想要的效果是,table某一项选中跳转到另外一个页面,返回的时候能跳转到当前table的页码

<a href="url(../)" onClick="location.replace(document.referrer)">返回</a>

<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>

猜你喜欢

转载自blog.csdn.net/qq_25236657/article/details/80242913