简单使用ueditor

官网地址:http://fex.baidu.com/ueditor/

引入必要文件

有些地方可能会用到jQuery,建议也引用进来

<!-- 配置文件 -->
<script type="text/javascript" src="ueditor文件夹/ueditor.config.js"></script>
<!-- 编辑器源码文件 -->
<script type="text/javascript" src="ueditor文件夹/ueditor.all.js"></script>

body区域

  <!-- 加载编辑器的容器 -->
<script id="container" name="content" type="text/plain">

</script>

JavaScript

  //实例化编辑器
var ue = UE.getEditor('container',{
    //设置高度 更多设置见 http://fex.baidu.com/ueditor/#start-config
    initialFrameHeight:300,
});

 

 

标签: ueditor