# EditorContext.insertDivider(Object object)

插入图片

# 参数

# Object object

属性 类型
默认值
必填
说明
src string 图片地址
alt string 图像无法显示时的替代文本
width string 图片宽度(pixels/百分比)
height string 图片高度 (pixels/百分比)
extClass string 添加到图片 img 标签上的类名
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

# 示例代码

    this.editorCtx.insertImage({
        src: 'path/to/your/image',
        width: '100px',
        height: '50px',
        extClass: 'extra-class'
    })
1
2
3
4
5
6

在线客服