Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想停止浏览器中的后退按钮操作
任何人都可以帮助如何使用 HAML(不是 HTML)禁用浏览器中的后退按钮
谢谢。
请试试这个:
%html{lang: 'en'} %head :javascript window.history.forward(); function noBack() { window.history.forward(); } %body.login-page{:onload => "noBack();", :onpageshow => "if (event.persisted) noBack();", :onunload => ""}