zoukankan      html  css  js  c++  java
  • kindeditor的值到textarea里

        //主要内容
        KindEditor.ready(function (K) {
            editor = K.create('#zynr', {
                cssPath: '../../Scripts/kindeditor-4.1.10/plugins/code/prettify.css',
                uploadJson: '../../Scripts/kindeditor-4.1.10/asp.net/upload_json.ashx',
                fileManagerJson: '../../Scripts/kindeditor-4.1.10/asp.net/file_manager_json.ashx',
                allowFileManager: true,
                 "760px",
                height: "200px",
                afterBlur: function () { this.sync(); },
                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();
        });
    

      

  • 相关阅读:
    elk 分布式数据同步
    mget 同时获取
    Jzoj1460 无题noname
    Jzoj1460 无题noname
    Jzoj1322硬币
    Jzoj1322硬币
    Jzoj1321 灯
    Jzoj1321 灯
    Jzoj1310 生日礼物
    Jzoj1310 生日礼物
  • 原文地址:https://www.cnblogs.com/luckys/p/13091668.html
Copyright © 2011-2022 走看看