标签:
创建moneyTest页面,提交地址是result.jsp
<script type="text/javascript" src="ckeditor/ckeditor.js"></script></head> <body> <form action="<%=path %>/result.jsp" method="post"> <textarea class="ckeditor" name="txtcked"></textarea> <input type="submit" value="保存"> </form> </body>
result.jsp关键代码
<body> <% request.setCharacterEncoding("utf-8"); %> <textarea class="ckeditor" name="mycked"><%=request.getParameter("txtcked") %></textarea> </body>
实现效果:
标签:
原文地址:http://www.cnblogs.com/WuXuanKun/p/5639435.html