码迷,mamicode.com
首页 > 其他好文 > 详细

kindeditor的使用

时间:2015-03-08 10:22:53      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:

下载地址:http://kindeditor.net/down.php

解压放在项目要目录下,

在Bin目录下添加引用:LitJSON.dll

在页面头部加:

技术分享
<link rel="stylesheet" href="../kindeditor-4.1.10/themes/default/default.css" />
    <link rel="stylesheet" href="../kindeditor-4.1.10/plugins/code/prettify.css" />
    <script charset="utf-8" src="../kindeditor-4.1.10/kindeditor.js"></script>
    <script charset="utf-8" src="../kindeditor-4.1.10/lang/zh_CN.js"></script>
    <script charset="utf-8" src="../kindeditor-4.1.10/plugins/code/prettify.js"></script>
    <script>
        KindEditor.ready(function (K) {
            var editor1 = K.create(#content1, {
                cssPath: ../kindeditor-4.1.10/plugins/code/prettify.css,
                uploadJson: ../kindeditor-4.1.10/asp.net/upload_json.ashx,
                fileManagerJson: ../kindeditor-4.1.10/asp.net/file_manager_json.ashx,
                allowFileManager: true,
                afterCreate: function () {
                    var self = this;
                    K.ctrl(document, 13, function () {
                        self.sync();
                        K(form[name=example]‘)[0].submit();
                    });
                    K.ctrl(self.edit.doc, 13, function () {
                        self.sync();
                        K(form[name=example]‘)[0].submit();
                    });
                }
            });
            prettyPrint();
        });
    </script>
技术分享

页面内容:

<li class="t4"><asp:TextBox ID="content1" runat="server"  Width="1000" Height="600"  CssClass="textBox"></asp:TextBox></li>       
                        <li class="t5">
                            <asp:Button ID="btnSend" runat="server" Text="上 传" CssClass="mBtn" OnClientClick="return CheckTextBox()" OnClick="btnSend_Click"/>          
                        </li>

kindeditor的使用

标签:

原文地址:http://www.cnblogs.com/liuwenbohhh/p/4321319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!