插入网络图片的回调事件

  1. const E = window.wangEditor
  2. const editor = new E('#div1')
  3. // 插入网络图片的回调
  4. editor.config.linkImgCallback = function (src,alt,href) {
  5. console.log('图片 src ', src)
  6. console.log('图片文字说明',alt)
  7. console.log('跳转链接',href)
  8. }
  9. editor.create()