1、让IE9变成IE8在跑不成功
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
2、IE9开始不支持JS的这个写法了document.getElementById
修改方法:
fckeditor/editor/js/fckeditorcode_ie.js中的
FCKTools.RegisterDollarFunction=function(A){A.$=A.document.getElementById;};
修改为: FCKTools.RegisterDollarFunction=function(A){A.$=function(v){return A.document.getElementById(v);}};
OK!!!