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>
  • 相关阅读:
    Qt Creator 安装SDK,在MSVC编译模式下使用CDB调试器
    QString与std::string的相互转换
    白话代码中的复杂度分析-大O复杂度表示法 时间,空间复杂度分析 最好,最坏,平均复杂度
    QT 如何使窗体初始最大化
    make_ext4fs
    Qt5.4中遇到找不到头文件<QApplication>等
    MariaDB 数据库的备份
    MariaDB -- 数据类型
    MariaDB基础操作
    keepalived + lvs 网站高可用集群
  • 原文地址:https://www.cnblogs.com/holdon521/p/4332074.html
Copyright © 2011-2022 走看看