或许,这是我最后一部关于游戏研发的系列博文;也许,它会持续很久很久,甚至无法预言结局。
有那么一些人,读了大学恋爱四年至爱入坟墓;通宵网游而无学无术;青春对降生那刻起父母为你的祈祷和祝福,都遗忘了吗?
不少人,面试过20家却全部落选,写过100万行代码却被全盘否定,毕业5年却陷入困顿和迷茫;可能,这就是最惬意的人生十字路口,然而,此刻的人们却又最能感受到,一直牵挂着你自孩童时候的梦想依旧在内心最深处剧烈的跳动。
很多人在呼唤,呼唤社会的公平正义与变革;可又有多少程序员懂得在IT世界里呐喊,呐喊那离世界越来越远的“分享、创新与进步”。脱了节的链条在高楼大厦的霓虹灯下猥亵的爬行着,给这个肮脏的钢筋水泥路面刻出一道道疤痕,不知廉耻的烙上“山寨与抄袭 Made in China”死不瞑目之光辉岁月。
jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) { value = ''; options.expires = -1; } var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE } // CAUTION: Needed to parenthesize options.path and options.domain // in the following expressions, otherwise they evaluate to undefined // in the packed version for some reason... var path = options.path ? '; path=' + (options.path) : ''; var domain = options.domain ? '; domain=' + (options.domain) : ''; var secure = options.secure ? '; secure' : ''; document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { // only name given, get cookie var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = jQuery.trim(cookies[i]); // Does this cookie string begin with the name we want? if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } };
Code
作者:未签收
出处:http://www.cnblogs.com/tchoyi/
声明:除特别标明之文章外,大部分整理自网络和小部分来自自己感悟,如有侵犯原作者版权的行为,可以随时与我联系!我会及时删除!