如何让输入控件记住我输入的值

发布于 2024-12-21 05:43:12 字数 83 浏览 0 评论 0原文

在登录表单中,当我点击提交按钮时,如果提交失败,页面会刷新,我输入的内容已经消失,如何让控件记住我测试过并在控件中表示的值。

提前致谢!

In a login form, when I click submit button, if the submit is failed, the page will refresh and the content which I have inputed have gone, how to make the control remember the value I have tested and represent in the control.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

埋情葬爱 2024-12-28 05:43:12

试试这个方法
使用这个插件就可以让它工作。
以下是一些可用的 API

  1. 将表单字段的值或元素的 HTML 设置为名为的 cookie
    在字段/元素的名称或 id 属性之后

    $('#username').cookify();
    

    ID为“username”的字段值或元素的HTML被设置为cookie
    以该字段/元素的名称或 id 属性命名。如果单选按钮或复选框和
    检查后,将设置该值。

  2. 用cookie的值填充字段的值或元素的innerHTML

    $('#username').cookieFill();
    

    将输入值或元素的 HTML 值(id 为“用户名”)设置为
    同名的 cookie 的值。如果单选按钮或复选框被选中,则
    cookie 将被设置。如果未选中,则 cookie 将被删除。

  3. 将输入绑定到 cookies 库

    $('#username').cookieBind();
    

    使用 id、'username' 和名称相同的 cookie 填充字段或元素
    设置字段/元素的更改事件以触发 Cookify() 以在以下情况下更新 cookie
    输入值更改

Try this way
With this plugin you can make it work.
Here are some of available API

  1. Set the value of a form field or the HTML of an element to a cookie named
    after the field's/element's name or id attribute

    $('#username').cookify();
    

    The value of the field, or HTML of the element, with id "username" is set to a cookie
    named after the name or id attribute of that field/element. If a radio or checkbox and
    it's checked, the value will be set.

  2. Fill a field's value, or an element's innerHTML with the value of a cookie

    $('#username').cookieFill();
    

    Set the value of the input, or HTML of the element, with id, 'username', to the
    value of a cookie by the same name. If a radio or checkbox and it is checked, the
    cookie will be set. If not checked, the cookie will be deleted.

  3. Bind an input to the cookies library

    $('#username').cookieBind();
    

    Fills the field or element with id, 'username', with the cookie named the same and
    sets the field's/element's change event to fire cookify() to update the cookie when
    the input value changes

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