zoukankan      html  css  js  c++  java
  • kindeditor简单使用

    <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
        <head>
            <base href="<%=basePath%>">
            <title>My JSP 'aa.jsp' starting page</title>
            <link rel="stylesheet" href="/flowctrl/js/kindeditor/default.css"
                type="text/css"></link>
            <script type="text/javascript"
                src="/flowctrl/js/kindeditor/kindeditor-min.js"></script>
            <script type="text/javascript" src="/flowctrl/js/kindeditor/zh_CN.js"></script>
            <script type="text/javascript"
                src="/flowctrl/easyui/jquery-1.8.0.min.js"></script>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <script>
                var editor;
                KindEditor.ready(function(K) {
                    editor = K.create('textarea[name="content"]', {
                        resizeType : 1,
                        allowPreviewEmoticons : false,
                        allowImageUpload : false,
                        items : [
                            'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
                            'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
                            'insertunorderedlist', '|', 'emoticons', 'image', 'link']
                    });
                    K('input[name=getText]').click(function(e) {
                        var aa = encodeURI(editor.html(),"UTF-8"); 
                         $.ajax({
                            url:"/flowctrl/saveMessageAction.do",
                            type: "get",
                            data:{message:aa},
                            contentType: "application/x-www-form-urlencoded; charset=utf-8",
                            dataType: "text",
                            success: function(data){
                                  alert("发布成功!");
                                  $("#content").html("");
                             },
                            error: function(data){
                                 alert("发布失败!");
                             }
                         });
                    });
                });
        </script>
        </head>
    
        <body>
            <div align="center">
                <h2 style="color: ">
                    流控系统公告消息发布
                </h2>
                <form>
                    <textarea name="content" id="content" idd
                        style=" 700px; height: 200px; visibility: hidden;">注意:</textarea>
                    <input type="button" id="send" name="getText" value="发布" />
                </form>
            </div>
        </body>
    </html>
  • 相关阅读:
    Windows Internals学习笔记(八)IO系统
    FPGA相关术语(一)
    Bilinear Filter
    总线与接口
    GPIO相关知识
    .NET IL学习笔记(一)
    Windows Internals学习笔记(七)Image Loader
    Windows Internals学习笔记(五)Synchronization
    struts2官方 中文教程 系列五:处理表单
    struts2官方 中文教程 系列四:Action
  • 原文地址:https://www.cnblogs.com/holdon521/p/4332074.html
Copyright © 2011-2022 走看看