gpt4 book ai didi

javascript - 向 CKEditor 添加自定义样式

转载 作者:可可西里 更新时间:2023-11-01 01:26:35 25 4
gpt4 key购买 nike

我最近将 CKEditor 添加到我的应用程序中,我想在编辑器中包含我自己的 CSS 样式表,以便我可以在编辑器中选择它们。

我该如何实现?到目前为止,我的代码如下所示:

<script type="text/javascript">

CKEDITOR.replace( 'editor1',{
uiColor : '#9AB8F3',
});

</script>

最佳答案

<script type="text/javascript">
// This code could (may be should) go in your config.js file
CKEDITOR.stylesSet.add('my_custom_style', [
{ name: 'My Custom Block', element: 'h3', styles: { color: 'blue'} },
{ name: 'My Custom Inline', element: 'span', attributes: {'class': 'mine'} }
]);
// This code is for when you start up a CKEditor instance
CKEDITOR.replace( 'editor1',{
uiColor: '#9AB8F3',
stylesSet: 'my_custom_style'
});
</script>

您还可以阅读stylesSet.add 语法的完整文档:

关于javascript - 向 CKEditor 添加自定义样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2102797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com