tinyMCE 剥离了“class”属性,尽管它位于extend_valid_elements 中
当单击“删除格式”时,tinyMCE 不断剥离我的元素的类属性,尽管我已将其添加到 Extended_valid_elements 中。看这里:
...
extended_valid_elements : "p[class],figure[class],figcaption",
valid_children : "+p[figure]",
...
一切都被剥夺了。你有什么想法吗?
非常感谢!
tinyMCE keeps stripping the class-attribute of my element, when clicking "remove formatting", although i've added it to the extended_valid_elements. look here:
...
extended_valid_elements : "p[class],figure[class],figcaption",
valid_children : "+p[figure]",
...
all gets stripped. do you have any idea?
thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个: http://tinymce.moxiecode.com/wiki.php/Configuration :formats(请参阅“删除格式”部分)。
您必须编辑tiny_mce.js。
搜索那里显示的代码并将以下内容添加到removeformat-array:
它应该防止tinymce在使用remove-format-button时从p元素中删除类属性。
Take a look at this: http://tinymce.moxiecode.com/wiki.php/Configuration:formats (see the "remove format"-section).
You'll have to edit tiny_mce.js .
Search for the code shown there and add the following to the removeformat-array:
It should prevent tinymce from removing the class-attribute from p-elements when using the remove-format-button.
代码必须是:
code must be: