:)
这是我在 stackoverflow 上的第二篇文章,对我的第一个问题的结果很满意。无论如何,我已经有了一个重新设计的外观的 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的代码,但由于我缺乏编码经验,这让我更加困难......任何知道我的问题答案的人......请帮助我......谢谢你和更多的力量...... :)