如何让输入控件记住我输入的值
在登录表单中,当我点击提交按钮时,如果提交失败,页面会刷新,我输入的内容已经消失,如何让控件记住我测试过并在控件中表示的值。
提前致谢!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个方法
使用这个插件就可以让它工作。
以下是一些可用的 API
将表单字段的值或元素的 HTML 设置为名为的 cookie
在字段/元素的名称或 id 属性之后
ID为“username”的字段值或元素的HTML被设置为cookie
以该字段/元素的名称或 id 属性命名。如果单选按钮或复选框和
检查后,将设置该值。
用cookie的值填充字段的值或元素的innerHTML
将输入值或元素的 HTML 值(id 为“用户名”)设置为
同名的 cookie 的值。如果单选按钮或复选框被选中,则
cookie 将被设置。如果未选中,则 cookie 将被删除。
将输入绑定到 cookies 库
使用 id、'username' 和名称相同的 cookie 填充字段或元素
设置字段/元素的更改事件以触发 Cookify() 以在以下情况下更新 cookie
输入值更改
Try this way
With this plugin you can make it work.
Here are some of available API
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
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.
Fill a field's value, or an element's innerHTML with the value of a cookie
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.
Bind an input to the cookies library
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