引用CKEDITOR的JS文件:
添加其JS文件<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
替换TEXTAREA标签:
<textarea rows="30" cols="50" name="editor01">请输入.</textarea>
<script type="text/javascript">CKEDITOR.replace('editor01');</script>
或者在head区域引入
<script type="text/javascript">
window.onload = function()
{
CKEDITOR.replace( 'editor01' );
};
</script>
当然还有一个方法CKEDITOR.appendTo(elementOrId, config) 它可以在特定的dom对象中创建CKEDITOR
<div id="editorSpace"><:/div>
CKEDITOR.appendTo( 'editorSpace' );
CKEditor的基本用法
一、在页面中加载CKEDITOR编辑器:
1:CKEDITOR.replace(element,config):用编辑器取代element
2:CKEDITOR.appendTo(element,config,html):在element后面添加编辑器
二、常用的方法:
获得编辑器中的内容:getData();
设置编辑器中的内容:setData();
编辑器的宽度:config.width = 640;
编辑器的高度:config.height = 100;
全部菜单:config.toolbar = 'Full';
基础菜单:config.toolbar = 'Basic';
自定义菜单:config.toolbar_Full = []