ueditor使用

<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <script type="text/javascript" charset="utf-8" src="ueditor.config.js"></script>
        <script type="text/javascript" charset="utf-8" src="ueditor.all.min.js"> </script>
        <script type="text/javascript" charset="utf-8" src="lang/zh-cn/zh-cn.js"></script>
    </head>
    <body>
        <script id="editor" type="text/plain" style="1024px;height:500px;"></script>
    </body>
    <script type="text/javascript">
        var ue = UE.getEditor('editor');
    </script>
</html>

后台获取内容:

可用form提交request.getParameter("editor");

或加参数(String editor)

原文地址:https://www.cnblogs.com/zhoucx66/p/5649072.html