我在JSP中使用了Uediter富文本,原本富文本的样式还有
<div class="box-editor" >
<textarea name="editor" rows="6" id="editor" class="box-txra"></textarea>
</div>
style部分:
.box-editor {
height: 570px;
}
.box-txra {
width: 100%;
height: 450px;
margin-bottom: 25px;
}
js部分:
var ue = UE.getEditor('editor', {autoHeightEnabled: false,maximumWords:2000});
大家能帮我看看吗