TinyMCE富文本编辑器初始化配置参数详解
tinymce.init({ selector: '#content',convert_urls:false,height:500,width:"100%",language:'zh_CN',menubar:false,statusbar:true,entity_encoding:'raw',plugins: "code lists advlist link image autolink noneditable axupimgs wordcount table",toolbar: 'undo redo code formatselect bold strikethrough forecolor alignleft aligncenter alignright removeformat bullist numlist link blockquote noneditable axupimgs table',advlist_bullet_styles: 'square',advlist_number_styles: 'lower-alpha',link_title: false,//不要链接标题target_list: false,//不要链接打开方式valid_children: '+a[div]',block_formats: '正文=p;一级标题=h2;二级标题=h3',content_style:`img { max-width: 100% !important; height: auto !important; display: block; margin: 0 auto; }`,images_upload_base_path:'https://img.abc.com/',setup: function(editor){ editor.on('keyup',function(e){if (event.keyCode == 8){if(editor.selection.getNode().nodeName == 'IMG'){ editor.selection.select(editor.selection.getStart().closest(".mce-insert-img-box")); editor.execCommand("mceInsertContent",false,""); } } }); }}});