页面加载后如何保留表单字段的值?
当用户提交表单时,有没有办法保留文本字段/文本框的值?我只想保留有错误的值或我指定的值。
例如,我要发布到 10 个博客,并且 1-9 已成功发布,因此我只想在表单提交后加载页面时保留 10 中的值。我可以这样做吗?如何?
Is there a way to retain values of textfield/textbox when a user submits a form? i only want to retain values with errors or values I specify.
For example i am posting to 10 blogs and 1-9 gets posted succesfully so I only want to retain the value from 10 when a page load after form submission. Can I do that? how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将值存储在会话中。输出表格时将其拉出。
Store the values in the session. Pull them out when outputting the form.
是的!您可以使用会话变量。参考这里http://www.coveryourasp.com/Session.asp
Yes! You can use session varriables. Refer to here http://www.coveryourasp.com/Session.asp
如果您在同一页面上提交表单,也可以在不使用会话的情况下完成此操作。
在每个输入文本的值中添加以下内容:
值=<代码>
You can do it without using session as well if you submitting form on same page.
in value of each input text add this:
value=
<?php if(isset($_POST['form']){ echo $_POST['name_this_input'];}) ?>