编辑器 获取不到值
下了个kindeditor编辑器 但是提交数据后,获取不到textarea的值。
这是js代码
<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 : true
});
</script>
这是<textarea cols="80" rows="10" name="content" id="plcontent"></textarea>
用form提交 自己实在是弄不懂了,求高手给详细解答
------解决方案--------------------1、form一定要把textarea包围在里面;
2、form的method属性要用post;
后台这样获取:
request.getParameter("content")