JS里浮点数的运算
摘要:转自:https://blog.csdn.net/East_MrChiu/article/details/63685345
阅读全文
H5中用postMessage传递数据,解决localStorage不能跨域问题
摘要:localStorage不能跨域,所以在A域名下用localStorage.YourKey方式存储的值,在B域名下是不能取到的。 所以需要转变思路,目前主要使用的两种方式: 一种方式:在A、B两个页面使用document.domain设置为相同的域名,但两个页面需要遵循同源策略,即协议,端口(如果有
阅读全文
JS相关
摘要:Date的格式化扩展: Date.prototype.Format = function (f) { var o = { "M+": this.getMonth() + 1, "d+": this.getDate(), "H+": this.getHours(), "m+": this.getMin
阅读全文