主题: kindeditor-4.1.7不能上传图片
作者: mzhixing, 发布日期: 2013-06-04 16:11:49, 浏览数: 5272

在用kindeditor-4.1.7上传图片的时候出现“microsoft jscript 运行时错误:拒绝访问”,同时VS提示在这段代码有问题:function _iframeDoc(iframe) {
 iframe = _get(iframe);
 return iframe.contentDocument || iframe.contentWindow.document;
}

不知有那位大侠能帮忙解答下。其他功能都正常,就是图片不能上传。。。

作者: sms, 发布日期: 2013-09-23 11:12:42

参照文档里面的例子:


<script>
KindEditor.ready(function(K) {
    K.create('#textarea_id', {
                uploadJson : '../asp/upload_json.asp',
                fileManagerJson : '../asp/file_manager_json.asp',
                allowFileManager : true
        });
    window.editor = K.create('#editor_id', {
        afterChange: function() {
            this.sync();
        },
        afterBlur: function() {
            this.sync();
        }
    });
});
</script>

回复
发表新帖 发表回复