添加HTML类TinyMCE的TD元素(Adding html class to tinymce t

2019-10-31 16:00发布

:)

这是我的第二个职位在这里计算器,得到了满意我的第一个问题的结果。 不管怎么说,我已经有一个重新设计的外观的工作TinyMCE的工具栏。 在实现这一目标我已经使用jQuery来类添加到工具栏元素。

但在某些方面是不是如果在初始化工具栏的类也加入破越好..

让我们说:theme_advanced_buttons1: “保存,新建文档,|,粗体,斜体,下划线,删除线,”

当前:(一个,我现在有)

  • 启动TinyMCE的
  • 找到的元素添加类,同时还有元素

结果:

   <td class="first"> (*save elements here) </td>
   <td class="last"> (*newdocument elements here) </td>
   <td class="separator"> (*separator element here) </td>
   <td class="first"> (*bold elements here) </td>
   <td class="center"> (*italic elements here) </td>
   <td class="center"> (*underline elements here) </td>
   <td class="last"> (*strikethrough elements here) </td>

我想达到什么: - 启动TinyMCE的,并添加类(*结果会是一样的)

不会是这样快? 我一直在跟踪TinyMCE的,但与我的编码经验不足使得我更困难......任何人在那里,谁知道回答我的问题。请帮助我的代码..谢谢你和更多的权力... :)

Answer 1:

看起来你应该使用configuraton设置editor_css 。



文章来源: Adding html class to tinymce td element