自从我使用 CKEditor ( http://ckeditor.com/ ) 以来,我遇到了一个问题。问题是我找不到使编辑器只读的方法,而且我不能只使用文本区域,因为我想保持一致性。我已经在 StackOwerflow 上看到过很多类似的问题,但它们都不起作用或太旧。
到目前为止,我的代码只是显示/初始化编辑器:
$(document).ready(function(){
CKEDITOR.replace( 'ckeditor', {
on: {
// Check for availability of corresponding plugins.
pluginsLoaded: function( evt ) {
var doc = CKEDITOR.document, ed = evt.editor;
if ( !ed.getCommand( 'bold' ) )
doc.getById( 'exec-bold' ).hide();
if ( !ed.getCommand( 'link' ) )
doc.getById( 'exec-link' ).hide();
}
}
});
});
我使用最新的 CKEditor 版本(v.4.1.1 完整包)
提前致谢!:)