我使用CKeditor编辑器,页面加载的时候编辑器内容直接显示,但是要求不可编辑!怎么实现呢?谢谢~~
<script type="text/javascript"> $(document).ready(function() { CKEDITOR.config.readOnly = true; }); </script>
太帅了,困扰了好久的问题,一个JS就搞定了。太厉害了。谢谢哦
查看生成的html源码,找到CKeditor生成的iframe作如下设置:
editor.document.designMode ="Off";
editor.document.contentEditable = false;
只能在火狐的firebug里面能看到这个iframe,右键查看源文件,是看不到这个iframe的。。。那我要在哪里设置呢。
@jean Q:
就是firebug里看到的那个iframe。
$("#iframexx").contentWindow.document.designMode ="Off";
$("#iframexx").contentWindow.document.contentEditable = false;
@向往-SONG: 谢谢你的回答。呵呵。