升級到IE9後,fckeditor在IE9裡的彈出浮動層會出現bug,裡面的內容不會出現。所以無論是想在頁面編輯器裡粘貼內容,還是上傳圖片等凡是需要彈出窗口操作的東西都會有問題,想要進行其它的操作也只能重新刷新頁面。原因是IE9不支持var $=document.getElementById;這樣的寫法了。
打開下面這個文件
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);}};