我想使用jquery制作一个正文背景切换器。你将有一些按钮,每个按钮将根据你的选择改变身体bg。我希望它能够保存一个cookie,以便在您更改页面时检索用户的选择。
第一部分我使用.addclass或.css 但我被困在svaing用户的选择部分。
(对不起我的英文)
答案 0 :(得分:3)
查看本文可以帮助您保存/检索和删除Cookie:
答案 1 :(得分:3)
另请查看jQuery的Cookie plugin,它允许您执行以下操作:
$.cookie('the_cookie', 'the_value'); // Create a session cookie ("the_cookie") and set its value to "the_value"
$.cookie('chocolate_chip_cookie', 'the_value', { // create a cookie with all available options
expires: 7, // expires in seven days
path: '/', // accessible from the whole site...
domain: 'jquery.com',
secure: true // ...but only on a https connection
});
$.cookie('the_cookie', null); // delete the session cookie