CKEditor

作者: 昼暗 | 来源:发表于2018-09-18 17:18 被阅读0次

    ckeditor 显示不出 "<"号

    解决 : 将要展示的字符串中的&替换为&
    js代码

    var str = "&lt;";
    str.replace("&", "&amp;");
    

    全屏和预览按钮不显示

    inline模式下不显示
    replace 可以显示

    CKEditor 的item

    toolbarGroup items
    styles Font FontSize Styles Format
    colors TextColor BGColor
    mode Source
    clipboard Cut Copy Paste PasteText PasteFromWord
    undo Undo Redo
    spellchecker Scayt
    basicstyles Bold Italic Underline Strike Subscript Superscript
    cleanup RemoveFormat
    list NumberedList BulletedList
    indent Outdent Indent
    blocks Blockquote
    align JustifyLeft JustifyCenter JustifyRight JustifyBlock
    links Link Unlink Anchor
    insert Image Table HorizontalRule SpecialChar
    document Preview
    tools Maximize
    about About

    相关文章

      网友评论

          本文标题:CKEditor

          本文链接:https://www.haomeiwen.com/subject/kmapnftx.html