zoukankan      html  css  js  c++  java
  • 富文本编辑器

    根据需要下载富文本编辑器安装包 网址: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>

    实现效果:

     

  • 相关阅读:
    Minimum Sum
    Prefix and Suffix
    BBuBBBlesort!
    Wanna go back home
    The Chosen One+高精度
    一元三次方程
    文本文件比对
    nginx日志文件切割
    nginx启动脚本
    nginx
  • 原文地址:https://www.cnblogs.com/hr1997/p/5639369.html
Copyright © 2011-2022 走看看