gpt4 book ai didi

javascript - ckeditor 将样式应用于选择

转载 作者:太空宇宙 更新时间:2023-11-03 23:25:22 26 4
gpt4 key购买 nike

CKEditor 是否有某种直接的 api 来将样式应用于选择?我正在浏览文档,但似乎找不到它。我需要做的,类似于内联编辑器。

CKEDITOR.selection.applyCss('fontsize', '15px', 'span');
// or
CKEDITOR.selection.applyCss('color', '#bada55', 'span');

我无法预定义样式,因为我不知道字体大小、颜色、行高、字母间距或其他任何值。

最佳答案

看来我回答了我自己的问题。它比我希望的稍微麻烦一些,但这确实有效:

var style = new CKEDITOR.style({
element: 'span',
attributes: {
'style': 'font-size: 20px'
}
});

editor.applyStyle(style);

在这里找到:http://docs.ckeditor.com/#!/api/CKEDITOR.style

关于javascript - ckeditor 将样式应用于选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27228976/

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