ueditor在ie8保存对象不支持“indexOf”属性或方法
IE8不支持数组判断indexOf,把代码
if (whitList[tagName].indexOf(key) === -1) {
node.setAttr(key);
}
换成
if($.inArray(key, whitList[tagName])==-1){
node.setAttr(key);
}
IE8不支持数组判断indexOf,把代码
if (whitList[tagName].indexOf(key) === -1) {
node.setAttr(key);
}
换成
if($.inArray(key, whitList[tagName])==-1){
node.setAttr(key);
}
搜索网络能发现很多方法但是没有内网的解决方案,以下放出 <!--[if lt IE 9]> <script src="/Public/2017-5
转自:https://www.cnblogs.com/wz122889488/p/6272751.html 解决IE8不支持console,代码中包含console时会报错
[https://github.com/es-shims/es5-shim][https_github.com_es-shims_es5-shim] [https://git
[https://github.com/es-shims/es5-shim][https_github.com_es-shims_es5-shim] [https://git
很奇怪的问题,呵呵。。被我碰到了。 很简单,将页面中名称为"submit"的控件改一下名称就可以了 比如: 有一个submit按钮名字叫submit <inpu
前言 今天在做项目的过程中遇到remove在IE浏览器不支持,通过查看其它博文,发现IE只支持removeNode方法。因此得到解决,将其整理成博文,希望可以帮到更多人。
IE8不支持数组判断indexOf,把代码 if (whitList[tagName].indexOf(key) === -1) { node.setAtt
解决方法:只需加上如下代码即可 if(!Array.from)\{ Array.from = function (el) \{
一、下载 搜索下载:ie-css3.htc,它是让IE浏览器支持CSS3表现的关键。 二、上面的是什么东西 首先说说.htc文件,.htc文件是个脚本文件,个人以
最近在做几个pc端的页面的时候涉及到了各种浏览器的兼容问题,这里总结一下关于IE8 不支持 border-radius 属性问题(圆角)的解决方法。 一、问题:IE8
还没有评论,来说两句吧...