是否有一个功能,我可以附加作为一个按钮的点击事件,使浏览器回到上一页?
<input name="action" type="submit" value="Cancel"/>
是否有一个功能,我可以附加作为一个按钮的点击事件,使浏览器回到上一页?
<input name="action" type="submit" value="Cancel"/>
当前回答
最短!
<button onclick="history.go(-1);">Go back</button>
http://jsfiddle.net/qXrbx/
我更喜欢.go(-number)方法,因为对于1个或多个“back”,只有一个方法可以使用/记住/更新/搜索等。
此外,使用标签作为返回按钮似乎比带有名称和类型的标签更合适……
其他回答
<input name="action" type="submit" value="Cancel" onclick="window.history.back();"/>
每次对我都管用
<a href="javascript:history.go(-1)">
<button type="button">
Back
</button>
</a>
用于转到前一页
第一个方法
<a href="javascript: history.go(-1)">Go Back</a>
第二种方法
<a href="##" onClick="history.go(-1); return false;">Go back</a>
如果我们想后退不止一步,那么就增加
For going 2 steps back history.go(-2)
For going 3 steps back history.go(-3)
For going 4 steps back history.go(-4)
and so on.......
将此添加到输入元素中
<input
action="action"
onclick="window.history.go(-1); return false;"
type="submit"
value="Cancel"
/>
这是唯一一个在当前所有浏览器上都有效的功能:
<script>
function goBack() {
history.go(-1);
}
</script>
<button onclick="goBack()">Go Back</button>