解决FCKeditor在IE9下弹出层兼容问题

2022-12-23 17:13:40 浏览数 (1)

在IE9下,FCKeditor的弹出浮动层会出现兼容bug,下面提供一个解决方法:

打开下面这个文件 fckeditor/editor/js/fckeditorcode_ie.js

找到第 38行的这个方法:FCKTools.RegisterDollarFunction

将原来的 FCKTools.RegisterDollarFunction=function(A){A.$=A.document.getElementById;};

修改方法为: FCKTools.RegisterDollarFunction=function(A){A.$=function(v){return A.document.getElementById(v);}};

0 人点赞