jquery.bgiframe.js在IE9下提示INVALID_CHARACTER_ERR错误
时间:2022-01-16 08:53:34|栏目:jquery|点击: 次
jquery.bgiframe.js在IE9下的错误
复制代码 代码如下:
SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5)
jquery.bgiframe.js, 行8 字符976
错误代码
复制代码 代码如下:
1 {if(!$('iframe.bgiframe',this)[0])this.insertBefore(document.createElement(html),this.firstChild);});};})(jQuery);
在网上找到些结局方案
方案一:
复制代码 代码如下:
this.insertBefore(document.createElement('html'),this.firstChild);
HTML加个引号就行了。
目前就找到该解决方案,日后有新的最修改!
上一篇:jQuery中outerHeight()方法用法实例
栏 目:jquery
下一篇:jQuery form插件之formDdata参数校验表单及验证后提交
本文标题:jquery.bgiframe.js在IE9下提示INVALID_CHARACTER_ERR错误
本文地址:http://www.codeinn.net/misctech/190365.html