摘要: 1 jQuery.cookie = function(name, value, options) { 2 if (typeof value != 'undefined') { // name and value given, set cookie 3 options = options || {}; 4 if (value === null) { 5 value = ''; 6 options.expires = -1; 7 } 8 var e... 阅读全文
posted @ 2013-06-19 00:45 iQingHan 阅读(455) 评论(0) 推荐(0) 编辑