Javascript Tinymce图像\u类\u列表不工作

Javascript Tinymce图像\u类\u列表不工作,javascript,css,html,tinymce-4,Javascript,Css,Html,Tinymce 4,我正在尝试使用此选项初始化tinymce,但在图像选项中看不到图像类列表。我不知道这是怎么回事 我的tinyMce版本是4.0 这是图像类列表的文档 tinymce.init({ 选择器:“文本区域”, 主题:“现代”, 身高:300, 实体_编码:“原始”, 删除换行符:true, 应用\u源\u格式:false, force_p_新行:false, 清理:是的, 插件:[ “coreimage advlist自动链接列出链接图像charmap打印预览hr锚定分页符”, “searchrepl

我正在尝试使用此选项初始化tinymce,但在图像选项中看不到图像类列表。我不知道这是怎么回事

我的tinyMce版本是4.0

这是图像类列表的文档

tinymce.init({
选择器:“文本区域”,
主题:“现代”,
身高:300,
实体_编码:“原始”,
删除换行符:true,
应用\u源\u格式:false,
force_p_新行:false,
清理:是的,
插件:[
“coreimage advlist自动链接列出链接图像charmap打印预览hr锚定分页符”,
“searchreplace wordcount visualblocks visualchars代码全屏显示”,
“insertdatetime媒体非中断保存表上下文菜单方向性”,
“表情符号模板粘贴文本颜色”
],
模板:[
{
标题:“2列3-1 ve 3-2”,
url:“/adm/tpl/tools/tinymce/bootstrap\u colums\u 3\u 1\u 3\u 2.html”,
说明:“列模板”
},
{
标题:“2列3-2 ve 3-1”,
url:“/adm/tpl/tools/tinymce/bootstrap\u colums\u 3\u 2\u 3\u 1.html?22”,
说明:“列模板”
}
],
工具栏1:“模板、|、新文档、|、粗体、斜体、下划线、删除线、|、左对齐、居中对齐、右对齐、格式选择、字体选择、字体大小选择”,
工具栏2:“剪切、复制、粘贴、粘贴字、搜索、替换、撤消、重做、字符映射、iespell、媒体、advhr、打印、全屏、可视光标、非中断、分页、恢复打印”,
工具栏3:“链接、取消链接、定位、图像、清理、代码、|、插入日期、插入时间、预览、|、前景色、背景色、表格”,
图像\u advtab:正确,
content\u css:“/css/bootstrap.min.css”,
图像列表:,
图像\u类\u列表:[
{标题:'无',值:'},
{title:'Image Responsive',value:'img Responsive'},
{标题:'Image Circle',值:'img Circle'},
{title:'Image Rounded',value:'img Rounded'},
{标题:“图像缩略图”,值:“img缩略图”}
]

}))

我已经解决了这个问题。这是tinyMce的版本。我将脚本从4更新到4.1.9,问题得到了解决

tinymce.init({
selector: "textarea",
theme: "modern",
height : 300,
    entity_encoding : "raw",
    remove_linebreaks : true,
    apply_source_formatting : false,
    force_p_newlines : false,
    cleanup : true,
plugins: [
    "coreimage advlist autolink lists link image charmap print preview hr anchor pagebreak",
    "searchreplace wordcount visualblocks visualchars code fullscreen",
    "insertdatetime media nonbreaking save table contextmenu directionality",
    "emoticons template paste textcolor"
],

templates : [
    {
            title: "2 Column 3-1 ve 3-2",
            url: "/adm/tpl/tools/tinymce/bootstrap_colums_3_1_3_2.html",
            description: "Column Templates"
    },
    {
            title: "2 Column 3-2 ve 3-1",
            url: "/adm/tpl/tools/tinymce/bootstrap_colums_3_2_3_1.html?22",
            description: "Column Templates"
    }

],


toolbar1: "template,|,newdocument,|,bold,italic,underline,strikethrough,|,alignleft,aligncenter,alignright,formatselect,fontselect,fontsizeselect",
toolbar2: "cut,copy,paste,pasteword,|,search,replace,|,undo,redo,charmap,iespell,media,advhr,|,print,|,fullscreen,|,visualchars,nonbreaking,pagebreak,restoredraft",
toolbar3: "link,unlink,anchor,image,cleanup,code,|,insertdate,inserttime,preview,|,forecolor,backcolor,table",
image_advtab: true,
content_css : "/css/bootstrap.min.css",
image_list : <?php include "myexternallist.php"; ?>,

image_class_list: [
    {title: 'None', value: ''},
    {title: 'Image Responsive', value: 'img-responsive'},
    {title: 'Image Circle', value: 'img-circle'},
    {title: 'Image Rounded', value: 'img-rounded'},
    {title: 'Image Thumbnail', value: 'img-thumbnail'}
]