解決方法可以這么來做:
打開這個文件, 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補上。