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.
我的移动网站只有 HTML 和 css。我想要一个后退按钮,用户可以在其中返回上一页。
history.go(-1) 这种方法在我的手机上不起作用。如何编码这个后退按钮。请帮我
首先,您应该在手机的浏览器上启用 javascript,然后这应该可以正常工作:
<a href="history.go(-1)">Back to Results</a>
重要的是,它不在“onclick”中,而是在“href”中