1、简介
官网:http://ueditor.baidu.com/website/index.html
演示:http://ueditor.baidu.com/website/examples/
2、引入UEditor
<head>
</head> <body> <div> <script id="editor" type="text/plain"></ script> </div> <script type="text/javascript"> //实例化编辑器 var ue = UE.getEditor( 'editor', { autoHeightEnabled: true, autoFloatEnabled: true, initialFrameWidth: 690, initialFrameHeight:483 }); </script> …… <!--编辑器基本配置--> <script type="text/javascript" charset="gbk" src="ueditor.config.js"></ script> <!--编辑器完整代码--> <script type="text/javascript" charset="gbk" src="ueditor.all.js"> </script > ……
</body>
3、