ckeditor 配置

<textarea rows="50" cols="30" name="editor01" id=‘editor01‘>请输入.</textarea>
<script type="text/javascript">//CKEDITOR.replace(‘editor01‘);
CKEDITOR.replace( ‘editor01‘, {
uiColor: ‘#14B8C4‘,
width:700,
height:200

});
</script>

时间: 2024-10-12 11:49:33

ckeditor 配置的相关文章

MVC富文本编辑器CKEditor配置CKFinder

富文本编辑器CKEditor的使用 *:first-child { margin-top: 0 !important; } body>*:last-child { margin-bottom: 0 !important; } /* BLOCKS =============================================================================*/ p, blockquote, ul, ol, dl, table, pre { margin:

struts2+ckeditor配置图片上传

又是一个漫漫长夜. 公司的编辑器坏了,用的是百度编辑器,上传图片的网址被框架给拦截了,我们本地怎么测试都没问题,放到服务器就这样了.和老李找了半天,疯了,没原因的. 笔者以前用过jsp+ckeditor,觉得里面上传功能挺好用,于是想出这个法子,把网站的编辑器换掉. 用的是最新的版本的,4点几的.很有wordpress的感觉,不知道是不是一家的.先预览一下: 代码: package action; import java.io.File; import java.io.FileInputStre

CKeditor 配置使用

一.使用方法:1.在页面<head>中引入ckeditor核心文件ckeditor.js<script type="text/javascript" src="ckeditor/ckeditor.js"></script> 2.在使用编辑器的地方插入HTML控件<textarea><textarea id="TextArea1" cols="20" rows="2

富文本编辑器 CKeditor 配置使用

作者:Tyler Ning出处:http://www.cnblogs.com/tylerdonet/本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,如有问题,可以通过以下邮箱地址[email protected] 联系我,非常感谢. Ckeditor下载地址:http://ckeditor.com/download 一.使用方法:1.在页面<head>中引入ckeditor核心文件ckeditor.js script type="

[转载]CKEditor配置

一.使用方法: 1.在页面<head>中引入ckeditor核心文件ckeditor.js <script type="text/javascript"src="ckeditor/ckeditor.js"></script> 2.在使用编辑器的地方插入HTML控件<textarea> <textarea id="TextArea1" cols="20" rows="

富文本编辑器 CKeditor 配置使用 (带附件)

Ckeditor下载地址:http://ckeditor.com/download 1.CKeditor的基本配置 var textval=CKEDITOR.instances.TextArea1.getData(); //获取带HTML的值 var stemTxt=CKEDITOR.instances.TextArea1.document.getBody().getText();//获取纯文本 CKEDITOR.instances.TextArea1.setData(data.content)

ckeditor、ckeditor配置

1.将ckeditor和ckfinder文件夹拷入项目文件夹中,刷新项目. 2.ckfinder把文件夹中的bin目录下的dll文件(CKFinder.dll)添加到网站的引用中,防止出现找不到类的错误.(未能加载类型“CKFinder.Connector.Connector”.) 3. 在添加编辑控件的页面(aspx)的head中加入,并插入代码: <script src="ckeditor/ckeditor.js" type="text/javascript&quo

在线编辑器ckeditor配置与使用

1.去官网下载http://ckeditor.com/合适的版本,我用的是最新版,ckeditor_4.5.6_standard 2.将解压的文件夹复制到WebContent文件夹下(本人IDE的是Eclipse) 3.jsp页面引入 <link rel="stylesheet" href="${pageContext.request.contextPath}/css/samples.css"> <script src="${pageCo

UEditor和CKEditor配置上传图片,视频,附件

UEditor: http://blog.sina.com.cn/s/blog_8bb128230102v12x.html CKEditor:http://blog.sina.com.cn/s/blog_8bb128230102v12t.html