替换 ckeditor 中的默认属性
我希望能够更改一些应用于 html 的默认属性。例如,当文本对齐方式设置为右、左、居中时。该属性如下所示:
<p style="text-align:right">some text</p>
我希望它是
<p align="right">some text</p>
有谁知道如何做到这一点。 谢谢。
I would like to be able to change some of the default attributes which are applied to the html. For example when the text alignment is set to right, left, center. The attribute goes like so:
<p style="text-align:right">some text</p>
I would like it to be
<p align="right">some text</p>
Does anyone know how this can be done.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用户点击提交后,在服务器端以编程方式执行。
我知道某些规范有最糟糕的要求,但我不建议进入 CKEditor 代码并在那里更改内容。这也会让升级变得更加困难。
Do programmatically on the server side after the user hits submit.
I understand some specs have the shittiest requirements but I do not suggest going into the CKEditor code and changing stuff there. It will make it harder to upgrade also.
我找到了一个将类分配给 p 元素而不是样式属性的解决方案。
然后你应该将这些类添加到你的 css 文件中。对我来说效果很好。
I find out a solution to assign classes to p element rather than style attribute.
Then you should add these classes in your css file. Works fine for me.