jQuery的用法

使用前需先下載jquery.cookie.js

//把value字串存入test
$.cookie("test","value");

//cookie存活7天
$.cookie("test","value",{expires:7});

//取得cookie的值
$.cookie("test");

//刪除cookie
$.cookie("test",null)
Categories: jQuery