gpt4 book ai didi

javascript - Ckeditor 自定义插件不工作

转载 作者:行者123 更新时间:2023-11-29 17:24:35 25 4
gpt4 key购买 nike

我正在尝试实现 www.ckeditor.com. 中给出的时间戳示例插件但是这个按钮没有出现在我的工具栏中,即使我按照他们网站上给出的所有步骤进行操作,例如插件名称与文件夹名称相同,plugin.js 和图像的正确位置。我在 config.js 中添加了 CKEditor.confi.extraplugins文件并在 config.js 的工具栏中添加名称。在 jsp 页面中我的代码是

<script language="JavaScript" src="/ckeditor/ckeditor_source.js"></script>

window.onload = function(){
CKEDITOR.replace( 'editor1',
{
fullPage : true,
extraPlugins :'docprops',
extraPlugins : 'timestamp',
toolbar : 'LISToobar'
});
};

但是有些时间戳按钮没有出现在我的工具栏中。请帮助我

最佳答案

你不能定义extraPlugins两次,你必须添加以逗号分隔的插件:

<script type="text/javascript" src="/ckeditor/ckeditor_source.js"></script>
<script type="text/javascript">
window.onload = function(){
CKEDITOR.replace( 'editor1',
{
fullPage : true,
extraPlugins :'docprops,timestamp',
toolbar : 'LISToobar'
});
};
</script>

关于javascript - Ckeditor 自定义插件不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9997852/

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