如何确定用户是否选择了文件上传文件?

时间:2008-09-05 16:23:49

标签: javascript html upload

如果我有

<input id="uploadFile" type="file" />

标签和提交按钮,如何在IE6(及以上版本)中确定用户是否选择了文件。

在FF中,我只是这样做:

var selected = document.getElementById("uploadBox").files.length > 0;

但这在IE中不起作用。

4 个答案:

答案 0 :(得分:98)

这适用于IE(和FF,我相信):

if(document.getElementById("uploadBox").value != "") {
   // you have a file
}

答案 1 :(得分:7)

这段代码在我的本地环境中运行,希望它也可以在实时工作

var nme = document.getElementById("uploadFile");
if(nme.value.length < 4) {
    alert('Must Select any of your photo for upload!');
    nme.focus();
    return false;
}

答案 2 :(得分:3)

function validateAndUpload(input){
    var URL = window.URL || window.webkitURL;
    var file = input.files[0];

    if (file) {
        var image = new Image();

        image.onload = function() {
            if (this.width) {
                 console.log('Image has width, I think it is real image');
                 //TODO: upload to backend
            }
        };

        image.src = URL.createObjectURL(file);
    }
};​

<input type="file" name="uploadPicture" accept="image/*" onChange="validateAndUpload(this);"/>

更改时调用此功能。

答案 3 :(得分:0)

您可以使用:

    var files = uploadFile.files;

    if (files.length == 0) { console.log(true) } else { console.log(false) }
    if (files[0] == undefined) { console.log(true) } else { console.log(false) }
    if (files[0] == null) { console.log(true) } else { console.log(false) }

这三个都给出了相同的结果。