该 方法 使用方式为 EditorContext.blur(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.clear(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.format(string name, string value)
name | value |
bold | - |
italic | - |
underline | - |
strike | - |
ins | - |
script | sub / super |
header | H1 / H2 / h3 / H4 / h5 / H6 |
align | left / center / right / justify |
direction | rtl |
indent | -1 / +1 |
list | ordered / bullet / check |
color | hex color |
backgroundColor | hex color |
margin/marginTop/marginBottom/marginLeft/marginRight | css style |
padding/paddingTop/paddingBottom/paddingLeft/paddingRight | css style |
font/fontSize/fontStyle/fontVariant/fontWeight/fontFamily | css style |
lineHeight | css style |
letterSpacing | css style |
textDecoration | css style |
textIndent | css style |
wordWrap | css style |
wordBreak | css style |
whiteSpace | css style |
该 方法 使用方式为 EditorContext.getContents(Object object)
属性 | 类型 | 必填 | 说明 |
success | function | 否 | 接口调用成功的回调函数 |
fail | function | 否 | 接口调用失败的回调函数 |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
html | string | 带标签的HTML内容 |
text | string | 纯文本内容 |
delta | Object | 表示内容的delta对象 |
该 方法 使用方式为 EditorContext.getSelectionText(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | | 否 | 接口调用成功的回调函数 |
fail | function | | 否 | 接口调用失败的回调函数 |
complete | function | | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
text | string | 纯文本内容 |
该 方法 使用方式为 EditorContext.insertDivider(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.insertlmage(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
src | string | | 是 | 图片地址,仅支持 http(s)、base64、临时文件。 |
nowrap | boolean | false | 否 | 插入图片后是否自动换行,默认换行 |
alt | string | | 否 | 图像无法显示时的替代文本 |
width | string | | 否 | 图片宽度(pixels/百分比) |
height | string | | 否 | 图片高度 (pixels/百分比) |
extClass | string | | 否 | 添加到图片 img 标签上的类名 |
data | Object | | 否 | data 被序列化为 name=value;name1=value2 的格式挂在属性 data-custom 上 |
success | function | | 否 | 接口调用成功的回调函数 |
fail | function | | 否 | 接口调用失败的回调函数 |
complete | function | | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
this.editorCtx.insertImage({src: 'xx',width: '100px',height: '50px',extClass: className})
该 方法 使用方式为 EditorContext.insertText(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
text | string | - | 否 | 文本内容 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.redo(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.removeFormat(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.scrollIntoView()
该 方法 使用方式为 EditorContext.setContents(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
html | string | | 否 | 带标签的HTML内容 |
delta | Object | | 否 | 表示内容的delta对象 |
success | function | | 否 | 接口调用成功的回调函数 |
fail | function | | 否 | 接口调用失败的回调函数 |
complete | function | | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
该 方法 使用方式为 EditorContext.undo(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
本页内容是否解决了您的问题?