Tinymce - 在插入 table 之后插入 html 元素

Tinymce - Insert html element after inserting table

我想在每次插入 table 后添加一个段落,它将保存 Tinymce 插件中 table 的 table 名称。
已经能够自定义 table 但是没有添加 html 元素的解决方案。

您可以进入插件文件夹并直接编辑源代码 -

for(i='<table id="__mce"><tbody>',n=0;t>n;n++){
    for(i+="<tr>",r=0;e>r;r++)i+="<td>"+(s.ie&&s.ie<10?"&nbsp;":"<br>")+"</td>";i+="</tr>"
}
return i+="</tbody></table>"

请将此编辑为 -

for(i='<table id="__mce"><tbody>',n=0;t>n;n++){
    for(i+="<tr>",r=0;e>r;r++)i+="<td>"+(s.ie&&s.ie<10?"&nbsp;":"<br>")+"</td>";i+="</tr>"
}
return i+="</tbody></table><p>table name</p>"

这将导致 "table name" 换行打印。