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.
在 ckeditor(最新版本)中,我将 enterMode 配置为使用 ENTER_BR。但是每次我在编辑器中按 enter 时,它都会在新创建的行前面显示一些奇怪的字符(“​”),我不知道为什么。
有谁知道如何解决这个问题?提前致谢!
我在工作中也遇到了这个问题,在一个安装了 ckeditor(我相信是 4.0)的遗留应用程序上。
对我们来说,这是 html 中 script 标签上的 charset 属性的问题。它们已设置为 ISO-8859-1:
<script src="somejsfile.js" charset="ISO-8859-1"></script>
删除 charset 属性或将其设置为 UTF-8 为我们解决了这个问题。