onfocus 和 onblur
编辑区域 focus(聚焦)和 blur(失焦)时触发的回调函数。
const E = window.wangEditor
const editor = new E('#div1')
editor.config.onblur = function (newHtml) {
console.log('onblur', newHtml) // 获取最新的 html 内容
}
editor.config.onfocus = function (newHtml) {
console.log('onfocus', newHtml) // 获取最新的 html 内容
}
editor.create()
当前内容版权归 wangEditor 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 wangEditor .