摘要: LocalStorage 是对Cookie的优化 没有时间限制的数据存储 在隐私模式下不可读取 大小限制在500万字符左右,各个浏览器不一致 在所有同源窗口中都是共享的 本质是在读写文件,数据多的话会比较卡(firefox会一次性将数据导入内存) 不能被爬虫爬取,不要用它完全取代URL传参 IE7及 阅读全文
posted @ 2017-12-08 16:59 LIULIULIU666 阅读(7508) 评论(0) 推荐(0) 编辑
摘要: 第一种: window.location.href="http://www.baidu.com"; 第二种: window.history.back(-1); 第三种: window.navigate('http://www.baidu.com'); 第四种: self.location = "http://www.baidu.com"; 第五种: top.location = ... 阅读全文
posted @ 2017-12-08 16:51 LIULIULIU666 阅读(346) 评论(0) 推荐(0) 编辑
摘要: var interval; //消息框获取焦点 $('#J_text').focus(function(){ interval = setInterval(function() { scrollToEnd(); }, 500) }) ... 阅读全文
posted @ 2017-12-08 16:46 LIULIULIU666 阅读(1007) 评论(0) 推荐(0) 编辑