Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 tinyMCE 开发一个基于 Unicode(پشتو)的语言文本编辑器。我已经有一个可以在我的字典应用程序中完美运行的键盘
http://thepashto.com
现在我想将此键盘集成到 TinyMCE 中,它有一些在文本区域的 Keyup 事件上执行的 java 脚本函数,当我删除编辑器时,它可以在正常文本区域中正常工作,但在 TinyMCE 集成后停止工作。
请在这方面提供帮助!
您需要意识到tinymce 不等于您的textarea。在初始化时,tinymce 会隐藏 textarea 并创建一个 contenteditable iframe。您需要将您的事件绑定到此 iframe(或 iframe 主体),以便能够正确做出反应。
解决以前的 textarea 将不起作用,因为您输入的内容是在 iframe 中输入的,并且隐藏的 textarea 会不时使用实际编辑器内容进行更新。