asp 按钮和历史记录返回 onclientclick

发布于 2024-08-15 04:09:23 字数 260 浏览 5 评论 0原文

您好,我有一个使用以下代码创建的 asp 按钮:

<asp:Button ID="btnBack" OnClientClick='javascript:history.back()' runat="server" Text="back">
</asp:Button>

但是,现在 javascript 无法返回历史记录。另一方面,如果我发出一个alert(),它就会起作用......为什么。为什么回溯历史行不通?

hi I have an asp button which is created using the following code:

<asp:Button ID="btnBack" OnClientClick='javascript:history.back()' runat="server" Text="back">
</asp:Button>

However, now the javascript doesn't work to go a history back. On the other hand, if I make an alert() it works...why. Why is it not working to go a history back?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

始终不够爱げ你 2024-08-22 04:09:23

尝试在最后使用 return false

 <asp:button id="btnBack" runat="server" text="Back" 
OnClientClick="JavaScript: window.history.back(1); return false;"></asp:button>

Try with return false at end:

 <asp:button id="btnBack" runat="server" text="Back" 
OnClientClick="JavaScript: window.history.back(1); return false;"></asp:button>
泪意 2024-08-22 04:09:23

尝试:

parent.history.back();

或者

history.go(-1)

Try:

parent.history.back();

Or

history.go(-1)
冧九 2024-08-22 04:09:23

在 DevExpress 项目中也遇到了同样的问题。使用 ASPxButton 而不初始化属性“AutoPostBack”将导致在任何客户端函数调用之前重定向到自身页面。
尝试使用 AutoPostBack="false" 按钮。

Had the same problem in DevExpress project. Using ASPxButton without initializing the property "AutoPostBack" will result in redirect to self page before any client-side function call.
Try AutoPostBack="false" for the button.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文