您好我有新的FCK編輯器2.3.2在新的Firefox的問題17,有js錯誤:「TypeError:FCKeditorAPI未定義」。我已經嘗試FCKeditor_IsCompatibleBrowser返回總是正確的解決方案,但它不工作,謝謝。FCK編輯器2.3.2在Firefox中的錯誤17 - TypeError:FCKeditorAPI未定義
3
A
回答
4
得到了同樣的問題,但發現修復Bugzilla。請參閱評論8,並確保您粘貼到該行內的正確位置。爲我工作。
0
解決方案是下載CKEditor http://ckeditor.com/download。
然後,把該代碼:
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
和在文字區域類= 「CKEditor的」。
例:
<textarea cols="80" class="ckeditor" id="editeur" name="editeur" rows="10"></textarea>
它會工作的,你會很高興! :)
+0
還不錯:),在未來項目的CK是更好的方法,謝謝。 –
4
在文件的FCKeditor \ fckeditor_php5.php,更換return ($iVersion >= 20030210) ;
到return true ;
function FCKeditor_IsCompatibleBrowser()
{
[...]
else if (strpos($sAgent, 'Gecko/') !== false)
{
$iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
return true ;
//return ($iVersion >= 20030210) ;
}
[...]
}
+0
是的,或者具有複雜條件的修改版本是解決方案的必要部分 –
相關問題
- 1. 未在Firefox中加載FCK編輯器
- 2. FCK編輯器定製
- 3. Fck編輯器多編輯
- 4. Fck編輯器問題
- 5. 當FCK編輯器放置在更新面板中時,如何從FCK編輯器獲取編輯值
- 6. FCK編輯器問題
- 7. FB未在Firefox 4中定義錯誤
- 8. jQuery未在Firefox中定義錯誤
- 9. ReferenceError:g在Firefox中未定義錯誤26.0
- 10. Mozilla Firefox中未定義的錯誤
- 11. Firefox中的「未定義」javascript錯誤
- 12. FCK編輯器的FileBrowser不再工作
- 13. 像FCK編輯器的文本區域
- 14. 關於FCK編輯器的許可證
- 15. javascript錯誤:ReferenceError:編輯未定義編輯(this);
- 16. Firefox 17滾動錯誤
- 17. firefox中的UniversalXPConnect權限錯誤17
- 18. 重置fck編輯器值yii
- 19. FCK編輯器+更新面板+ ValidateRequest =「false」?
- 20. DNN和FCK編輯器上傳圖片
- 21. dnn fck編輯器源代碼
- 22. 單詞FCK編輯器粘貼
- 23. Fck編輯器 - 更新面板
- 24. 變量未定義編譯器錯誤
- 25. Firefox中的javascript錯誤「容器未定義」
- 26. Firefox錯誤 - document.all未定義(WebUIValidation.js)
- 27. Javascript錯誤:未捕獲ReferenceError:未定義編輯
- 28. Phonegap/Android錯誤:未捕獲ReferenceError:url未定義在文件中:///android_asset/www/js/login.js:17
- 29. Firebug編輯器或'如何嵌入自定義編輯器'在Firefox選項卡?
- 30. Windows.event是未定義的 - 在Firefox中的JavaScript錯誤
感謝畢竟經過調試後,就在現在我們做類似的解決方案..對於firefox 17,IsGecko10必須是false並且IsGecko19是真的(我們的解決方案不太漂亮,但是工作正常), 謝謝。 (我們剛剛打包版本的gecko.js :)): IsGecko10 =((B <20051111)||(/rv:1.7/.test(s)))&&!(((s) B> = 17)&&(B <100)); IsGecko19 =/rv:1 \ .9/.test(s)|| ((B> = 17)&&(B <100)); –