首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

怎么在jsp中嵌入kindeditor文本编辑器

2013-03-12 
如何在jsp中嵌入kindeditor文本编辑器?如何在jsp中嵌入kindeditor文本编辑器?求大神帮帮忙。。文本编辑jspki

如何在jsp中嵌入kindeditor文本编辑器?
如何在jsp中嵌入kindeditor文本编辑器?
求大神帮帮忙。。 文本编辑 jsp kindeditor
[解决办法]


<div>
<textarea cols="80" rows="10" id="plcontent"></textarea>
</div>
<script type="text/javascript" charset="utf-8" src="<%=request.getContextPath()%>/kindeditor3.5.2/kindeditor.js"></script>
<script type="text/javascript">
KE.show({
    id:'plcontent',
   /*  width:300, */
   /*  height:250,  */
    resizeMode:1,
    allowUpload : true,
    imageUploadJson : '<%=request.getContextPath()%>/com/uploadkindeditor',
    fileManagerJson : '<%=request.getContextPath()%>/com/kindeditorfilemanager',
allowFileManager : false
});
</script>

[解决办法]
这个直接上官网上就能查到吧,以前做过。

热点排行