文章出處
文章列表
根據需要下載富文本編輯器安裝包 網址:ckeditor.com,其次將ckeditor文件夾導入WebRoot根目錄下
創建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>
實現效果:
文章列表
全站熱搜