ckeditor4 兼容ie11

ie11打开富文本时,会报ckeditor 无法获取未定义或null引用的属性XXX

这种应该怎么解决

image.png

阅读 2.7k
1 个回答

使用ie11访问并未出现问题 https://2i42h.csb.app/

代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Parcel Sandbox</title>
    <meta charset="UTF-8" />
  </head>

  <body>
    <div id="editor">
      <p>This is the editor content.</p>
    </div>
    <script src="https://cdn.ckeditor.com/4.13.0/standard/ckeditor.js"></script>
    <script>
      CKEDITOR.replace("editor");
    </script>
  </body>
</html>
推荐问题