解决方法可以这么来做:
打开这个文件, 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);}};
亲自做了实验,结果理想。。
话说,FCKeditor光荣退休了,代替它的ckeditor功能更强,加载速度更快!如果留恋FCKeditor的图片上传功能,可以用CKfinder补上。