TinyMCE:将 CSS 类属性与 formatselect-dropdown 格式结合使用
我想在 TinyMCE 格式 "http://wiki.moxiecode.com/index.php/TinyMCE:Control_reference" rel="nofollow noreferrer">formatselect dropdown 支持 css 类属性。
示例:如果希望能够在格式选择下拉列表中选择
而不是仅
作为格式。
作为格式。这里有人知道我该怎么做吗?
I would like to customize the formats in the TinyMCE formatselect dropdown to support css class attributes.
Example: If would like to be able to select <h2 class='foo'>
instead of just <h2>
as format in the formatselect dropdown.
Does anyone here have an idea how I could do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据其主要开发人员的说法,在当前的 TinyMCE 版本中,没有明智的方法可以做到这一点 :
...尽管有一种“不聪明”的方法来实现这一点:
TinyMCE 的
content_css
中定义的 CSS 类h2.foo
将在 styleselect 下拉列表 中显示为 foo 。现在,您可以选择
文本并从样式选择下拉列表中选择样式 foo。 这会导致
。
There is no smart way to do this in the current TinyMCE version according to its main developer:
...though there is an "unsmart" way to achieve this:
A CSS-class
h2.foo
defined in TinyMCE'scontent_css
will appear in the styleselect dropdown as foo.You can now select a
<h2>
-text and choose the style foo from the styleselect dropdown. This results in<h2 class='foo'>
.