是否有一个功能,我可以附加作为一个按钮的点击事件,使浏览器回到上一页?
<input name="action" type="submit" value="Cancel"/>
是否有一个功能,我可以附加作为一个按钮的点击事件,使浏览器回到上一页?
<input name="action" type="submit" value="Cancel"/>
当前回答
<input name="action" type="submit" value="Cancel" onclick="window.history.back();"/>
其他回答
你可以使用以下方法之一:
History.back()或window.history.back()
你还可以返回N个页面 history.go (1)
<input name="action" type="submit" value="Cancel" onclick="window.history.back();"/>
将此添加到输入元素中
<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>
简单。一行。
<button onclick="javascript:window.history.back();">Go Back</button>
就像维姆和马利克的回答,但只有一行。