您好我需要在加载文件时触发事件,而不是从浏览中取消并且不上传文件。
如果我在点击上传后立即检查文件的值,它将始终为空。浏览关闭后如何查看? 提前致谢
<input type="file"
name="uploadFileButton" id="uploadFileButton" size="40"
accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" />
JS:
$("#uploadFileButton").unbind("click").click(function() {
//HOW can I check after browse window is closed???????
});