問題出現(xiàn)的原因是因?yàn)镴S文件不統(tǒng)一造成的,在IE下FCK瀏覽器會(huì)加載editor/js/fckeditorcode_ie.js 這個(gè)文件
但是在Chrom內(nèi)核的瀏覽器會(huì)加載editor/js/fckeditorcode_gecko.js 這個(gè)文件.
在增加FCK插件的時(shí)候,只修改了editor/js/fckeditorcode_ie.js 而沒有修改editor/js/fckeditorcode_gecko.js 就會(huì)出現(xiàn) 未知工具欄項(xiàng)目 的錯(cuò)誤提示
導(dǎo)致新增的插件無法使用.
解決方法就是按照editor/js/fckeditorcode_ie.js的修改方法修改editor/js/fckeditorcode_gecko.js文件.
其中有兩個(gè)部分
第一部分:
case 'runcode':B=new FCKDialogCommand('runcode',FCKLang.DlgruncodeTitle,'dialog/runcode.php',520,300);break;
第二部分:
case 'runcode':B=new FCKToolbarButton('runcode',FCKLang.InsertruncodeLb1,FCKLang.Insertruncode);break;
其中runcode是你新增插件的名字,請(qǐng)按對(duì)應(yīng)格式修改