在fckeditor中按下按键时触发javascript函数

发布于 2024-10-04 06:49:33 字数 144 浏览 4 评论 0原文

当在 FCKeditor 2 文本区域中输入内容时,我需要触发自定义 JavaScript 函数。然而,我进行了广泛的搜索,但找不到答案。想要以某种方式将 onkeypress="customfunction()" 添加到文本区域之类的事情。

感谢您的帮助!

I need to trigger a custom javascript function when something is typed into FCKeditor 2 textarea. However, I have searched far and wide and can't find an answer to this. Would like to do something like add onkeypress="customfunction()" to the textarea somehow.

Thanks for any help!

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

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

发布评论

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

评论(2

早乙女 2024-10-11 06:49:33

最终通过一些文字暗示找到了一些东西。以下是如何在 FCKeditor 2.0 上执行 onkeypress 操作。您需要在调用编辑器代码后加载此 JavaScript:

function FCKeditor_OnComplete(editorInstance){   
    if (document.all) {        // If Internet Explorer.
      editorInstance.EditorDocument.attachEvent("onkeydown", function(event){alert('key was pressed');} ) ;
    } else {                // If Gecko.
      editorInstance.EditorDocument.addEventListener( 'keypress', function(event){alert('key was pressed')}, true ) ;
    }

}

managed to find something in the end using some hints of words. Here is how to do an onkeypress even on FCKeditor 2.0. You need to load this javascript AFTER the editor code is called:

function FCKeditor_OnComplete(editorInstance){   
    if (document.all) {        // If Internet Explorer.
      editorInstance.EditorDocument.attachEvent("onkeydown", function(event){alert('key was pressed');} ) ;
    } else {                // If Gecko.
      editorInstance.EditorDocument.addEventListener( 'keypress', function(event){alert('key was pressed')}, true ) ;
    }

}
征棹 2024-10-11 06:49:33

这似乎有效:

CKEDITOR.instances.<yourEditorname>.document.on('key', function(event) { });

在这里找到:http://cksource.com/forums/viewtopic.php ?t=18286

This seems to work:

CKEDITOR.instances.<yourEditorname>.document.on('key', function(event) { });

Found here: http://cksource.com/forums/viewtopic.php?t=18286

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