1、下载地址:http://ueditor.baidu.com/website/download.html(我下载的是.net版本)
下载后要先看一下ueditor.config.js和 net/config.json的文件,里面是关于图片上传和其他方法的一些路径配置
2、显示编辑页面(一定要看使用文档:http://fex.baidu.com/ueditor/#server-deploy)
1
2
3
jquery代码:
1 var ue = UE.getEditor('myEditor', {
2 toolbars: [
3 ['fullscreen', 'source', '|', 'undo', 'redo', '|',
4 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
5 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
6 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
7 'directionalityltr', 'directionalityrtl', 'indent', '|',
8 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
9 'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
10 'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertframe', 'insertcode', 'pagebreak', 'template', 'background', '|',
11 'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
12 'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
13 'print', 'preview', 'searchreplace', 'help', 'drafts']
14 ],
15 allHtmlEnabled: false,//提交到后台的数据是否包含整个html字符串
16 autoHeightEnabled: false,
17 autoFloatEnabled: true,
18 allowDivTransToP: false//阻止div标签自动转换为p标签
19 });
说明:修改配置项的方法: 1. 方法一:修改 ueditor.config.js 里面的 toolbars 2. 方法二:实例化编辑器的时候传入 toolbars 参数(详情参考:http://fex.baidu.com/ueditor/#start-toolbar)
1 //实例化编辑器到id为 container 的 dom 容器上:
2 var ue = UE.getEditor('container');
3 //设置编辑器内容:
4 ue.ready(function() {
5 ue.setContent('hello!
');
6 });
7 //追加编辑器内容:
8 ue.ready(function() {
9 ue.setContent('new text
', true);
10 });
11 //获取编辑器html内容:
12 ue.ready(function() {
13 var html = ue.getContent();
14 });
15 //获取纯文本内容:
16 ue.getContentTxt();
17 //获取保留格式的文本内容:
18 ue.getPlainTxt();
19 //获取纯文本内容:
20 ue.getContentTxt();
21 //判断编辑器是否有内容:
22 ue.hasContents();
23 //让编辑器获得焦点:
24 ue.focus();
25 //让编辑器获得焦点
26 ue.blur();
27 //判断编辑器是否获得焦点:
28 ue.isFocus();
29 //设置当前编辑区域不可编辑:
30 ue.setDisabled();
31 //设置当前编辑区域可以编辑:
32 ue.setEnabled();
33 //隐藏编辑器:
34 ue.setHide();
35 //显示编辑器:
36 ue.setShow();
37 //获得当前选中的文本:
38 ue.selection.getText();
39 //常用命令:
40 //在当前光标位置插入html内容
41 ue.execCommand('inserthtml', 'hello!');
42 //设置当前选区文本格式:
43 ue.execCommand('bold'); //加粗
44 ue.execCommand('italic'); //加斜线
45 ue.execCommand('subscript'); //设置上标
46 ue.execCommand('supscript'); //设置下标
47 ue.execCommand('forecolor', '#FF0000'); //设置字体颜色
48 ue.execCommand('backcolor', '#0000FF'); //设置字体背景颜色
49 //回退编辑器内容:
50 ue.execCommand('undo');
51 //撤销回退编辑器内容:
52 ue.execCommand('redo');
53 //切换源码和可视化编辑模式:
54 ue.execCommand('source');
55 //选中所有内容:
56 ue.execCommand('selectall');
57 //清空内容:
58 ue.execCommand('cleardoc');
59 //读取草稿箱
60 ue.execCommand('drafts');
61 //清空草稿箱
62 ue.execCommand('clearlocaldata');
获取到的数据是这样的:
防火防盗发货的发货
1 public ActionResult GetDetails(string NewsId)
2 {
3 int id = Int32.Parse(NewsId);
4 NewsInfo news = db.NewsInfoes.Find(id);
5 ViewData["news"] = news;
6 return View();
7 }
前台html代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
jquery代码:
1 function load() {
2 var ue = UE.getEditor('myEditor', {
3 toolbars: [
4 ['fullscreen', 'source', '|', 'undo', 'redo', '|',
5 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
6 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
7 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
8 'directionalityltr', 'directionalityrtl', 'indent', '|',
9 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
10 'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
11 'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertframe', 'insertcode', 'pagebreak', 'template', 'background', '|',
12 'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
13 'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
14 'print', 'preview', 'searchreplace', 'help', 'drafts']
15 ],
16 autoHeightEnabled: false,
17 autoFloatEnabled: true,
18 allowDivTransToP: false//阻止div标签自动转换为p标签
19 });
20 }
21
22 $(function () {
23 load();
24 });
然后就可以了,O(∩_∩)O哈哈~