如何使用JQuery检测文件输入是否选择了文件?

时间:2010-12-05 03:42:15

标签: javascript jquery html css

然后提醒文件名?

2 个答案:

答案 0 :(得分:24)

这应该足够了:

alert($('#your_input_box').val());

从我所知道的,文件选择框只是一个输入框。从这个问题中了解更多:jQuery: get the file name selected from <input type="file" />

答案 1 :(得分:14)

要检测文件是否被选中,您可以找到文件输入的长度

$("#bCheck").click(function() { // bCheck is a input type button
    var fileName = $("#file1").val();

    if(fileName) { // returns true if the string is not empty
        alert(fileName + " was selected");
    } else { // no file was selected
        alert("no file selected");
    }
});