wangEditor富文本自定义图片宽度

wangEditor增加自定义宽度按钮,效果如图:

 

修改代码:

wangEditor.js

增加输入框和事件

1、增加代码:

<span style="float:left;font-size:14px;margin:4px 5px 0 5px;color:#333;">\u81ea\u5b9a\u4e49\u5bbd\u5ea6</span><input id="selfSize" class="left" size="5" maxlength="3"/>%\n

 

 

2、增加方法:

{
selector: '#selfSize',
type: 'input',
fn: function fn() {
var $img = editor._selectedImg;
if ($img) {
var size = $("#selfSize").val();
$img.css('max-width', size+'%');
}
// 返回 true,表示该事件执行完之后,panel 要关闭。否则 panel 不会关闭
//return true;
}
}

 

posted on 2019-12-12 17:25  耗子0114  阅读(6469)  评论(2编辑  收藏  举报

导航