评论:jQuery图片上传预览支持拖拽  [查看原文]

所属分类:输入-上传

 64648  419  157
当前第3页 / 共5页
    沉沦、醉生梦死0
    2019/5/13 21:20:53
    还是有大神好
        司邪0
        2019/5/17 11:39:49
        是啊
    回复
    ちょう き0
    2019/5/6 16:01:19
    ie 为什么只能拖图片 点击无效那?
        ちょう き0
        2019/5/6 16:03:45
        ie版本 11
        ちょう き0
        2019/5/6 17:16:18

        目前已经解决

        createImageUploadDialog: function() {
            var fileInput = this.fileInput;
            if (this.needInit) {
                this.needInit = false;
                fileInput = $('<input type="file" name="ime-images" multiple="true"></input>');
                fileInput.on("change", this.onChangeUploadFile.bind(this));
                this.fileInput = fileInput[0];
                // fileInput = document.createElement('input');
                // fileInput.type = 'file';
                // fileInput.name = 'ime-images';
                // fileInput.multiple = true;
                // fileInput.onchange = this.onChangeUploadFile.bind(this);
                // this.fileInput = fileInput;
        
            }
            fileInput.click();
        }

        如有问题 请大神指教

        ちょう き0
        2019/5/6 17:18:06
        needInit 只是我脑子抽抽了定义了一个变量 默认值为true
        L新0
        2019/5/7 19:00:08
        大神 教教我
    回复
    卫晓光1
    2019/4/30 10:57:15

    不能选择同一张是因为input 已经有同一个file文件了,只需要把input的值清空即可。

    createImageUploadDialog: function() {
        var fileInput = this.fileInput;
        if (!fileInput) {
            fileInput = document.createElement('input');
            fileInput.type = 'file';
            fileInput.name = 'ime-images';
            fileInput.multiple = true;
            fileInput.onchange = this.onChangeUploadFile.bind(this);
            this.fileInput = fileInput;
        }
        fileInput.value = ''; //这里清空input的值,即可解决选择同一文件无法触发回调的问题
        fileInput.click();
    }
    回复
    唐崃循0
    2019/4/28 10:43:11
    彭叔0
    2019/4/23 13:25:55
    <li class="active">个人中心</li> 回复
    11211230
    2019/4/18 20:04:03
    回答或者上传
        野笑少女??0
        2019/4/20 21:47:08
        试试
        zhouxiaoluan0
        2019/5/22 14:26:55
        试试
    回复
    蚂蚁慢慢飘0
    2019/4/18 10:32:43
    很好,先用,
        zhouxiaoluan0
        2019/5/22 14:28:46
        很好
        viward0
        2019/5/24 11:03:01
        看下能不能下载
    回复
    精忠报国0
    2019/4/17 22:54:56
    怎么回答问题?
        野笑少女??0
        2019/4/20 21:48:28
        输入框输入内容回答即可
        viward0
        2019/5/24 11:14:12
        回答完没有币
    回复
    辉煌一世的咆哮i0
    2019/4/17 22:30:35
    默认图片无法显示,是什么原因
        精忠报国1
        2019/4/17 22:53:37
        路径
        zhouxiaoluan0
        2019/5/22 14:25:31
        是不是用了绝对路径
    回复
    M黎M0
    2019/4/16 15:23:50
    好东西 多谢分享 回复
    cmg19890
    2019/4/12 16:18:55
    不错,看看
        Sissi0
        2019/4/13 14:55:12
        怎么用,有详解吗
        龙戈0
        2019/4/24 20:20:28
        ???
        77?0
        2020/4/3 8:44:11
        试试
    回复
    yanyui0
    2019/4/12 11:16:13
    好东西 多谢分享
    回复
    大熊丶0
    2019/3/22 16:50:10
    $("#fileinput").fileinput({
        uploadUrl: '/user/upload_img', // you must set a valid URL here else you will get an error
        language: 'zh',
        allowedFileExtensions: ['jpg', 'png', 'gif'],
        overwriteInitial: false,
        maxFileSize: 10000,
        maxFilesNum: 3,
        minFileCount: 1,
        showCaption: false,
        ZoneEnabled: false,
        browseClass: "btn btn-danger",
        enctype: 'multipart/form-data'
    });
    回复
    ??0
    2019/3/21 9:24:29
    好想用这个插件啊
        也许会更好。0
        2019/4/7 12:26:06
        $("#fileinput").fileinput({
            uploadUrl: '/user/upload_img', // you must set a valid URL here else you will get an error
            language: 'zh',
            allowedFileExtensions: ['jpg', 'png', 'gif'],
            overwriteInitial: false,
            maxFileSize: 10000,
            maxFilesNum: 3,
            minFileCount: 1,
            showCaption: false,
            ZoneEnabled: false,
            browseClass: "btn btn-danger",
            enctype: 'multipart/form-data'
        });
        也许会更好。0
        2019/4/7 12:26:38
        $("#fileinput").fileinput({
            uploadUrl: '/user/upload_img', // you must set a valid URL here else you will get an error
            language: 'zh',
            allowedFileExtensions: ['jpg', 'png', 'gif'],
            overwriteInitial: false,
            maxFileSize: 10000,
            maxFilesNum: 3,
            minFileCount: 1,
            showCaption: false,
            ZoneEnabled: false,
            browseClass: "btn btn-danger",
            enctype: 'multipart/form-data'
        });
        意外之外0
        2019/4/14 13:31:18
        回答或上传自己的资源即可
        affable0
        2019/5/20 18:19:48
        回答或上传自己的资源即可
    回复
    老黄0
    2019/3/19 20:57:27

讨论这个项目(157)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

取消回复