ueditor在线编辑器的使用

ueditor是一个很好用的在线编辑工具,直接引入相应的JS和CSS文件。

在页面上:

<form action="" method="post">
     <TEXTAREA id=myEditor name="name">这里写你的初始化内容</TEXTAREA><br/>
     <input type="submit" value="提交"/>  
</form>

<SCRIPT type=text/javascript> 
     var editor = new UE.ui.Editor(); 
     editor.render("myEditor");  
</SCRIPT>

直接实例化插件。参考:http://ueditor.baidu.com/website/document.html

猜你喜欢

转载自747017186.iteye.com/blog/1973954