在复选框单击时设置 cookie(使用 jquery)

发布于 2024-11-09 10:06:04 字数 78 浏览 0 评论 0原文

我有一个登录表单,我想在单击复选框(“记住我”)时通过 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 技术交流群。

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

发布评论

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

评论(2

笑脸一如从前 2024-11-16 10:06:04

本指南介绍如何使用 jQuery 的 Cookie 插件: http://www.electrictoolbox.com/jquery- cookies/

然后你可以在你的 javascript 文件中使用类似这样的东西:

$(function() {
  $(".rememberme").change(function() {
     if ($(this).is(":checked"))
       $.cookie("loggin", $("#username").val(), {expires: 7});
  }
});

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:

$(function() {
  $(".rememberme").change(function() {
     if ($(this).is(":checked"))
       $.cookie("loggin", $("#username").val(), {expires: 7});
  }
});
彻夜缠绵 2024-11-16 10:06:04

基于 Henridv 的回答,我最终这样做了:

$("#remember_me").change(function() {
    $.cookie("remember_me",
             $(this).is(":checked"),
             {expires: 7, path:'/'}
    );
});

请注意,如果复选框是,我的解决方案还将 cookie 设置为 false取消选择。换句话说,这可以使 cookie 保持最新状态。

Building upon Henridv's answer, I ended up doing this:

$("#remember_me").change(function() {
    $.cookie("remember_me",
             $(this).is(":checked"),
             {expires: 7, path:'/'}
    );
});

Note that my solution also sets the cookie to false, if the checkbox is deselected. In other words, this keeps the cookie current.

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