浏览器兼容
浏览器兼容
i秋风伴落叶
2019 COME ON 秋风伴落叶
展开
-
浏览器兼容问题
问题:IE8/9不支持Array.indexOf 解决方案 if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(elt /*, from*/) { var len = this.length >>> 0; var from = Number(arguments[1]转载 2017-05-13 11:17:49 · 490 阅读 · 0 评论 -
bootstrap 样式所代表的含义
col-lg一般用于大屏设备,(min-width:1200px);col-md一般用于中屏设备,(min-width:992px);col-sm一般用于小屏设备,(min-width:768px);col-xs用于超小型设备,(max-width:768px);bootstrap模板:http://www.chinaz.com/free/2014/0924/368583.shtml原创 2017-11-13 14:52:15 · 1148 阅读 · 0 评论 -
js中 IE 浏览器不兼容 Array.from 显示对象不支持该属性或方法
解决方法:只需加上如下代码即可 if(!Array.from){ Array.from = function (el) { return Array.apply(this, el); } }原创 2019-06-03 16:20:42 · 4092 阅读 · 2 评论