如何在单击复选框时在 jquery 中存储 cookie 值(可以有多个值)
让我们假设我有一个文本框,可以在其中输入用逗号分隔的用户名。
详细信息:
我附近有一个文本框和一个搜索按钮。
当我单击搜索框时,用户列表将显示在弹出窗口中,附近有一个复选框
当用户点击复选框并点击提交时,相应的用户名将显示在文本框中。
我的问题是:我需要存储我单击的复选框的每个值,并使用 jquery 将其存储在 cookie 中。 *
** 可以存储用逗号分隔的多个值。 ** ** 不应有重复。 **
任何帮助将不胜感激......
提前致谢......
Let us consider i am having a text box where i can enter user names separated by commas.
In Detail:
I am having a text box and a search_button nearby.
When i click on the search box list of users will be displayed there in a popup with a check box nearby
When the user the clicks the check box and clicks submit the corresponding users name will be displayed on the text box.
My problem is: I need to store every value of the check box which i clicked and to store it in cookie using jquery. *
** There is the possible of storing multiple values separated by commas. ** ** There should not be duplicates. **
Any help will be thankful and grateful....
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您好,您可以使用这个插件 cookie 来做到这一点(见下文),
您可以执行以下操作:
}
并为特定键实现更多功能,检查是否已经存在某个值
ETC ...
};
Hello you can do that with this plugin cookie (See below),
with that you can do something like:
}
And implement more function for the specific key, check if already exists some value
etc ...
};