码迷,mamicode.com
首页 > Web开发 > 详细

KindEditor单独上传图片、单独上传文件、编辑器的通用设置与调用

时间:2015-12-03 21:13:41      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

    KindEditor.ready(function(K){
        var editor = K.editor({
            allowFileManager:true
        });
                // 上传图片
        K(‘#imageBtn‘).click(function(){
            editor.loadPlugin(‘image‘, function(){
                editor.plugin.imageDialog({
                    imageUrl:K(‘#image‘).val(),
                    clickFn:function(url){
                        K(‘#image‘).val(url);
                        editor.hideDialog();
                    }
                });
            });
        });
        // 上传文件
        K(‘#fileBtn‘).click(function(){
            editor.loadPlugin(‘insertfile‘, function(){
                editor.plugin.fileDialog({
                    fileUrl:K(‘#file‘).val(),
                    clickFn:function(url, title){
                        K(‘#file‘).val(url);
                        editor.hideDialog();
                    }
                });
            });
        });
    });

编辑器的设置与调用

    KindEditor.ready(function(K){
        var options = {
            width:‘670px‘,
            minWidth:‘670px‘,
            height:‘200px‘,
            resizeType:0,
            newlineTag:‘br‘,
            filterMode:false,
            wellFormatMode:false,
            afterBlur:function() {
                this.sync();
            }
        };
        var editor = K.create(‘textarea[name="content"]‘, options);
    });

 

KindEditor单独上传图片、单独上传文件、编辑器的通用设置与调用

标签:

原文地址:http://www.cnblogs.com/smismile/p/5017372.html

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