摘要: jQuery cookie是个很好的方便操作cookie。首先新建一个js文件。代码如下: 1 jQuery.cookie = function(name, value, options) { 2 if (typeof value != 'undefined') { 3 options = options || {}; 4 if (value === null) { 5 value = ''; 6 ... 阅读全文
posted @ 2013-01-24 16:06 小汪哥写代码 阅读(255) 评论(0) 推荐(0) 编辑