Firefox内容可编辑删除"帮助元素"

时间:2016-09-16 09:30:08

标签: html firefox contenteditable

我对Firefox有一个很大的问题,一旦我创建了一个内容可编辑的表,它就会不断导入一堆"帮助元素"我不想要的。

重现: 用firefox打开小提琴(个人,我使用48.0)。

见小提琴: https://jsfiddle.net/fronjv5o/

<div id="content" contenteditable="true">
<table>
<tr>
  <td>
    hello world
  </td>
</tr>
</table>
</div> 

我的问题是,如何删除这些&#34;帮助元素&#34;从再次露出丑陋的面孔?

如果不清楚这里我也在提及:

enter image description here

1 个答案:

答案 0 :(得分:0)

在这里倒了一个小时之后才找到解决方案: Contenteditable table row,column modifier

但基本上是:

 document.execCommand("enableInlineTableEditing", null, false);

一旦加载了DOM。