在复选框单击时设置 cookie(使用 jquery)
我有一个登录表单,我想在单击复选框(“记住我”)时通过 Jquery 将用户名(输入字段:用户名)存储在 cookie 中。有谁知道该怎么做?
I have a login form for which I would like to store the username (input field: username) in a cookie via Jquery the moment I click a checkbox ('remmber me'). Does anyone know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本指南介绍如何使用 jQuery 的 Cookie 插件: http://www.electrictoolbox.com/jquery- cookies/
然后你可以在你的 javascript 文件中使用类似这样的东西:
This guide shows how to use the Cookie plugin for jQuery: http://www.electrictoolbox.com/jquery-cookies/
Then you can use something like this in your javascript files:
基于 Henridv 的回答,我最终这样做了:
请注意,如果复选框是,我的解决方案还将 cookie 设置为 false取消选择。换句话说,这可以使 cookie 保持最新状态。
Building upon Henridv's answer, I ended up doing this:
Note that my solution also sets the cookie to false, if the checkbox is deselected. In other words, this keeps the cookie current.