插入网络图片的校验

使用 editor.config.linkImgCheck 可以自定义检查插入图片的链接。

const E = window.wangEditor
const editor = new E('#div1')

// 自定义检查插入图片的链接
// 参数中的imgSrc、alt、href分别代表图片地址、图片文本说明和跳转链接
// 后面两个参数是可选参数
editor.config.linkImgCheck = function(imgSrc,alt,href) {
    // 以下情况,请三选一

    // 1. 返回 true ,说明检查通过
    return true

    // // 2. 返回一个字符串,说明检查未通过,编辑器会阻止图片插入。会 alert 出错误信息(即返回的字符串)
    // return '图片 src 有 xxx 错误'

    // 3. 返回 undefined(即没有任何返回),说明检查未通过,编辑器会阻止图片插入。
    // 此处,你可以自定义提示错误信息,自由发挥
}

editor.create()
Copyright © wangEditor (2020 - present) all right reserved,powered by GitbookFile Modify: 2022-04-11 07:03:47

results matching ""

    No results matching ""