capricorncd / zx-editor

The HTML document (rich text) editor in Smart phone browser or webview, supporting mixed layout, reference, headline, unordered list, font color, bold and italics. 移动端HTML文档(富文本)编辑器,支持图文混排、引用、大标题、无序列表,字体颜色、加粗、斜体
https://capricorncd.github.io/zx-editor/demo
331 stars 100 forks source link

在App中,有时键盘不能删除图片 #12

Open netsesame2 opened 5 years ago

netsesame2 commented 5 years ago

已设置

let editor = new ZxEditor("#editorContainer", {
    fixed: false,
    disableBackspaceDelete: false
});

经常出现backspace不能删除图片,不知何故

netsesame2 commented 5 years ago

content.js // 286行

export function checkContentInnerNull ($content) {
  const $childs = $content.children
  return $childs.length <= 1 && util.isEmpty($content.innerText)
}

innerText 这条判断,在content区域只有图片的时候,就会出现img无法被删除的情况。 改成innerHTML即可。