摘要: 跨浏览器的本地存储多种方式,例如:1、localStorage:只支持IE8+、FireFox、Chrome、Opera等,不支持IE8以下的浏览器。2、浏览器Cookie:支持的数据存储量相对较少,每个domain最多只能有20条cookie,每个cookie长度不能超过4KB,否则会被截掉,有些浏览器甚至不支持;同时,Cookie存在安全性问题,如果cookie被人拦截了,就可以取得所有的session信息。3、可以在页面上嵌一个隐藏的Flash,然后使用Flash的Flash SharedObject,它基本上不会有兼容性问题,只有要额外的引入Flash和JS,但这样会增加页面负担。4、 阅读全文
posted @ 2014-03-14 08:53 microsoftzhcn 阅读(703) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-03-14 08:37 microsoftzhcn 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-03-14 08:36 microsoftzhcn 阅读(1809) 评论(1) 推荐(2) 编辑
摘要: /** 删除数组中指定索引的数据 **/Array.prototype.deleteAt = function (index) { if (index 0) { t = Math.floor(Math.random() * me.length); tempArr[tempArr.length] = me[t]; me = me.deleteAt(t); } return tempArr;}Array.prototype.orderRandom = function () { return this.sort(function ... 阅读全文
posted @ 2014-03-14 08:35 microsoftzhcn 阅读(2329) 评论(0) 推荐(0) 编辑
摘要: /** 在字符串末尾追加字符串 **/String.prototype.append = function (str) { return this.concat(str);}/** 删除指定索引位置的字符,索引无效将不删除任何字符 **/String.prototype.deleteCharAt = function (index) { if (index = this.length) { return this.valueOf(); } else if (index == 0) { return this.substring(1, this... 阅读全文
posted @ 2014-03-14 08:30 microsoftzhcn 阅读(477) 评论(0) 推荐(0) 编辑