插入链接的校验

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

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