以下是我的设计和代码,我试图在点击按钮时重定向到上一页,但这不起作用。
<asp:ImageButton ID="btn_back" runat="server" ImageUrl="~/go_back.jpg" OnClientClick="Back()" Height="41px" Width="49px" />
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel='stylesheet' href='style_demo.css' type='text/css' media='all' />
<style type="text/css">
.auto-style5 {
height: 33px;
}
</style>
<script type="text/javascript">
function Back() {
debugger;
history.go(-2);
return false;
}
</script>
</head>
<body>
答案 0 :(得分:0)
使用以下内容:
history.back();
答案 1 :(得分:0)
如果您想要的页面始终是您导航的最后一页,则可以返回。
window.history.back();