2009-04-12 84 views
0

我想使用jquery製作一個正文背景切換器。你會有一些按鈕,每個按鈕都會根據你的選擇改變主體。並且我想讓它保存一個cookie,以便在更改頁面時可以檢索用戶的選擇。使用jquery切換正文背景?

第一部分我得到它使用.addclass或.css 但我卡在svaing用戶的選擇部分。

(對不起,我的英語)

回答

3

也有看Cookie plugin的jQuery ,它可以讓你做這樣的事情:

$.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