如何将自定义宽度参数设置为由tinymce创建的img标签?
我的意思是当你在textarea中输入图像时,如何将其宽度更改为某个自定义值?图像管理器配置不提供这样的功能,所以我想修改这个脚本,只需要知道从哪里开始
解决 这是我在tinyMCE初始化块中添加的脚本
imagemanager_insert_template : function(fo, enc) {return '<img src=\"' + enc.xmlEncode(fo.url) + '\" width=\"$width_mini\" height=\"' + $width_mini/(fo.custom.width/fo.custom.height) + '\"/>';
},
这就是诀窍。
答案 0 :(得分:0)
已经回答,但会发布回答,以便其他人看到有解决此问题的方法
imagemanager_insert_template : function(fo, enc) {return '<img src=\"' + enc.xmlEncode(fo.url) + '\" width=\"$width_mini\" height=\"' + $width_mini/(fo.custom.width/fo.custom.height) + '\"/>';
},