插入链接的校验
使用 editor.config.linkCheck
可以自定义检查插入的链接。
const E = window.wangEditor
const editor = new E('#div1')
// 自定义检查插入的链接
editor.config.linkCheck = function(text, link) {
// 以下情况,请三选一
// 1. 返回 true ,说明检查通过
return true
// // 2. 返回一个字符串,说明检查未通过,编辑器会阻止链接插入。会 alert 出错误信息(即返回的字符串)
// return '链接有 xxx 错误'
// 3. 返回 undefined(即没有任何返回),说明检查未通过,编辑器会阻止链接插入。
// 此处,你可以自定义提示错误信息,自由发挥
}
editor.create()