如何检查fckeditor是否加载完全

发布于 2024-09-15 15:03:42 字数 137 浏览 5 评论 0原文

加载后,编辑器会注册一个名为 FCKeditorAPI 的全局对象。该对象提供了与页面中放置的任何编辑器实例交互的入口点,我收到一条错误,指出 FCKeditorAPI 未定义,因此 JavaScript 中是否有任何方法来检查 fckeditor 是否已加载

Once loaded, the editor registers a global object called FCKeditorAPI. This object offers the entry point to interact with any editor instance placed in a page and i am receiving an error stating FCKeditorAPI is not defined so is there any method in javascript to check whether fckeditor is loaded or not

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不爱素颜 2024-09-22 15:03:42

试试这个:

if( typeof( FCKeditorAPI ) !== "undefined" )
{
     /* any logic you want */
}

Try this:

if( typeof( FCKeditorAPI ) !== "undefined" )
{
     /* any logic you want */
}
故人的歌 2024-09-22 15:03:42

在版本3(ckeditor)中有instanceReady

CKEDITOR.on('instanceReady', function(ev) {
  doWhateverWith(ev);
});

您使用的是哪个版本?

In version 3 (ckeditor) there is instanceReady

CKEDITOR.on('instanceReady', function(ev) {
  doWhateverWith(ev);
});

Which version are you using?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文