然后提醒文件名?
答案 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");
}
});