插入网络图片的回调事件
const E = window.wangEditor
const editor = new E('#div1')
// 插入网络图片的回调
editor.config.linkImgCallback = function (src,alt,href) {
console.log('图片 src ', src)
console.log('图片文字说明',alt)
console.log('跳转链接',href)
}
editor.create()