去官网下载,本Demo用的MVC模式
下载地址:http://ueditor.baidu.com/website/download.html
加入文件夹中的结构:
引入了函数公式的图标:
@{
ViewBag.Title = "Index";
}
@*配置文件*@
@*函数公式插件引入的js*@
@{
ViewBag.Title = "UEditorDemo";
}
var editor = new baidu.editor.ui.Editor({
UEDITOR_HOME_URL: '/Scripts/ueditor/',//配置编辑器路径
iframeCssUrl: '/Scripts/ueditor/themes/iframe.css',//样式路径
initialContent: '',//初始化编辑器内容
autoHeightEnabled: true,//高度自动增长
minFrameHeight: 500,//最小高度
autoFloatEnabled: true,
initialFrameWidth: 784,
initialFrameHeight: 400
});
editor.render('editor');