替换 ckeditor 中的默认属性

发布于 2024-12-12 17:56:43 字数 248 浏览 1 评论 0原文

我希望能够更改一些应用于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静若繁花 2024-12-19 17:56:43

用户点击提交后,在服务器端以编程方式执行。

我知道某些规范有最糟糕的要求,但我不建议进入 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.

偷得浮生 2024-12-19 17:56:43

我找到了一个将类分配给 p 元素而不是样式属性的解决方案。

config.justifyClasses = [ 'AlignLeft', 'AlignCenter', 'AlignRight', 'AlignJustify' ];

然后你应该将这些类添加到你的 css 文件中。对我来说效果很好。

I find out a solution to assign classes to p element rather than style attribute.

config.justifyClasses = [ 'AlignLeft', 'AlignCenter', 'AlignRight', 'AlignJustify' ];

Then you should add these classes in your css file. Works fine for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文