如果我有 2 个表格直接在彼此下方,边距底部,是否不可能通过创建一个临时段落将光标放在这个间隙中。
例如,我想在其他 2 之间插入一个新表。如果不直接更改 HTML,这是不可能的。
是否可以使用双击,使其与 MS word 类似,并在您单击的该区域创建一个空白段落,然后将其替换为表格等,类似于尾随插件的工作方式。
我目前使用' trailing '插件,它在页面底部修复了这个类似的问题。
我也在使用 jquery 版本的 tinymce,如果这样可以更容易地解决这个问题。
tinymce 编辑器中的示例 HTML;
<table style="margin: 15px 0; width: 100%;">
<thead>
<tr>
<th scope="col">
Product Name</th>
<th scope="col">
Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Large product</td>
<td><a href="http://example.com">Find out more</a></td>
</tr>
<tr>
<td>Large product</td>
<td><a href="http://example.com">Find out more</a></td>
</tr>
</tbody>
</table>
<table style="margin: 15px 0; width: 100%;">
<thead>
<tr>
<th scope="col">
Product Name</th>
<th scope="col">
Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Large product</td>
<td><a href="http://example.com">Find out more</a></td>
</tr>
<tr>
<td>Large product</td>
<td><a href="http://example.com">Find out more</a></td>
</tr>
</tbody>
</table>
还创建了一个带有示例的 jsFiddle:http://fiddle.tinymce.com/Sicaab/2我希望能够在两个表之间插入额外的内容(段落、另一个表、列表等),而无需编辑 HTML。