我正在创建一个基于用户表单输入的网页。用户在看到生成的页面后,我希望允许他们按“返回”按钮并对表单进行更改。我想以他们之前填写的方式显示表单。如何获得这种行为(具有跨浏览器支持)的最佳方法?
最佳方法让返回按钮离开表单数据
原标题:
最佳回答
当用户看到生成的页面后,我希望允许他们按返回按钮并更改表格。我想显示以前填写的表格。
没有必要添加任何聪明的花式代码;除非您采取积极措施防止它,否则浏览器将默认执行此操作。
- breaking the cache with Cache-Control/Pragma headers
- generating the form page itself from the response to a POST (use POST-Redirect-GET instead)
- generating the form elements from script
Cookie解决方案很脆弱,如果你不想同时打开两个标签页出现混淆,就需要特殊处理。让自己变得容易:让浏览器处理。
问题回答
JQuery有一个很不错的cookie插件,我用它来在用户查找答案的过程中保留考试数据。
将保存的信息以分隔数据的形式存储在Cookie中。如果Cookie存在,则重新填充表格。
如果使用document.formName.fieldName
语法,则没有跨浏览器问题。
如果禁用了Cookie,则可以在服务器上存储它,并使用AJAX执行相同操作。
相关问题
热门标签
- winforms
- combobox
- fogbugz
- java
- date
- internationalization
- asp.net
- iis
- url-rewriting
- urlrewriter
- c#
- enums
- ocaml
- haxe
- algorithm
- string
- viewstate
- .net
- c++
- c
- symbol-table
- mysql
- database
- postgresql
- licensing
- migration
- vb.net
- vb6
- declaration
- vb6-migration
- python
- psycopg2
- backup
- vmware
- virtualization
- gnu-screen
- authentication
- desktop
- excel
- xll
- cultureinfo
- regioninfo
- oracle
- client
- session
- download
- html
- virtual
- constructor
- scenarios
- perl
- full-text-search
- javascript
- ajax
- testing
- oop
- inheritance
- vim
- encapsulation
- information-hiding