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.
我正在开发一个使用 AJAX 技术加载页面的 Web 应用程序,每个页面都包含一个通过 POST 提交的表单。
为了使用浏览器的后退和前进按钮,我正在检测哈希更改并通过location.hash.
location.hash
如何保存访问过的每个页面的表单参数?我不允许使用 GET 而不是 POST,因为这是客户端的要求。
html5 localstorage 是解决方案之一。
链接:
演示和使用
如何使用..