主题: 请问单独调用image 插件怎么关闭本地上传功能?
作者: SAILOR, 发布日期: 2014-06-13 10:23:16, 浏览数: 1677


请问单独调用image 插件怎么关闭本地上传功能?


        K(".footer").click(function(e) {
            editor.loadPlugin('image', function() {
                allowImageUpload : false,
                editor.plugin.imageDialog({
                    clickFn : function(url, title, width, height, border, align) {
                        alert(url+ title+ width+ height+ border+ align);
                        /*
                        if (editor.dialogs.length > 1) {
                            K('[name="url"]', div).val(url);
                            if (editor.afterSelectFile) {
                                editor.afterSelectFile.call(self, url);
                            }
                            editor.hideDialog();
                        }
                        */
                        editor.hideDialog();
                    }
                });
            });
        });


在image.js 文件里关闭了还是一样的情况。


KindEditor.plugin('image', function(K) {
    var self = this, name = 'image',
        allowImageUpload = K.undef(self.allowImageUpload, false),

作者: SAILOR, 发布日期: 2014-06-13 13:34:52

http://kindeditor.net/ke4/examples/image-dialog.html


已在官方参考文档找到答案了

回复
发表新帖 发表回复