如何在同一个页面加载两个或多个百度的 UEditor HTML 编辑器
17个回答
展开全部
.net updatepanel 控件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$(function(){
//需要创建几个就调用几次,括号内写id名
ueditor_get('ueditor_1');
ueditor_get('ueditor_2');
ueditor_get('ueditor_3');
ueditor_get('ueditor_4');
});
function ueditor_get(id) {
//初始化百度编辑器
var ue = UE.getEditor(id, {
toolbars : [ [ 'source', //源代码
'undo', //撤销
'redo', //重做
'bold', //加粗
'italic', //斜体
'underline', //下划线
'formatmatch', //格式刷
'indent', //首行缩进
'justifyleft', //居左对齐
'justifyright', //居右对齐
'justifycenter', //居中对齐
'justifyjustify', //两端对齐
'forecolor', //字体颜色
'backcolor', //背景色
'fullscreen', //全屏
'pasteplain', //纯文本粘贴模式
'selectall', //全选
'preview', //预览
'horizontal', //分隔线
'removeformat', //清除格式
'inserttitle', //插入标题
'cleardoc', //清空文档
'fontfamily', //字体
'fontsize', //字号
'paragraph', //段落格式
'insertimage',//多图上传
'attachment'//附件上传
] ],
autoHeightEnabled : true,
autoFloatEnabled : true
});
}
<tr>
<td class="td_r">课程描述 :</td>
<td>
<textarea style="width:94%; height:200px; resize:none;" name="cour_content" id="ueditor_1">${cour_content}</textarea>
</td>
</tr>
<tr>
<td class="td_r">前期课程 :</td>
<td>
<textarea style="width:94%; height:100px; resize:none;" name="tCourses.cour_before" id="ueditor_2">${cour.cour_before}</textarea>
</td>
</tr>
1注意name值一定要写
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询