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.
我需要从编辑器外部选择编辑器中的文本。我正在使用它editor.getSelection().getSelectedText(),但它什么也没返回。我怎样才能得到那个文本?
editor.getSelection().getSelectedText()
也许试试
editor.getSelection().getSelectedText().getNative();
以下内容自 3.6.1 起可用,并在 4.1 中顺利运行:
CKEDITOR.instances.yourInstanceName.getSelection().getSelectedText();
如有任何问题,请提供附加信息:浏览器(供应商+版本)、CKEditor 版本和配置。