前端 富文本框
程序员文章站
2022-05-29 23:12:47
...
页面展示:
步骤:
1,下载js包,引入文件ueditor
<script type="text/javascript" charset="utf-8" src="/static/portalres/jsfolder/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="/static/portalres/jsfolder/ueditor/ueditor.all.min.js"> </script>
2,html页面标签展示
<textarea name="content" id="content" style="width: 1050px; height: 400px; margin-top: 10px;"></textarea>
3,js事件
var ue = UE.getEditor('content');//赋予富文本框属性
var str1="aaa";
ue.setContent(str1)//给富文本框赋值