页面加载后如何保留表单字段的值?

发布于 2024-08-19 06:36:37 字数 126 浏览 2 评论 0原文

当用户提交表单时,有没有办法保留文本字段/文本框的值?我只想保留有错误的值或我指定的值。

例如,我要发布到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情场扛把子 2024-08-26 06:36:37

将值存储在会话中。输出表格时将其拉出。

Store the values in the session. Pull them out when outputting the form.

他是夢罘是命 2024-08-26 06:36:37

是的!您可以使用会话变量。参考这里http://www.coveryourasp.com/Session.asp

Yes! You can use session varriables. Refer to here http://www.coveryourasp.com/Session.asp

决绝 2024-08-26 06:36:37

如果您在同一页面上提交表单,也可以在不使用会话的情况下完成此操作。
在每个输入文本的值中添加以下内容:
值=<代码>

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'];}) ?>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文