我正在尝试实现www.ckeditor.com.中给出的时间戳示例插件但是这个按钮没有出现在我的工具栏中,即使我按照他们网站中给出的所有步骤这样的插件名称与文件夹名称相同,右边plugin.js和image的地方。我在config.js文件中添加了CKEditor.confi.extraplugins,并在config.js.adnd的工具栏中添加了名称,在jsp页面中,我的代码是
<script language="JavaScript" src="/ckeditor/ckeditor_source.js"></script>
window.onload = function(){
CKEDITOR.replace( 'editor1',
{
fullPage : true,
extraPlugins :'docprops',
extraPlugins : 'timestamp',
toolbar : 'LISToobar'
});
};
但有些时间戳按钮没有显示在我的工具栏中。请帮助我
答案 0 :(得分:5)
您无法定义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>