我正在使用 JQuery 检查表单文件输入字段中的文件大小和类型。HTML 是:
<input name="source" id="imageFile" type="file" style ="border: 1px solid #576675;">
和jQuery:
$('#imageFile').bind('change', function() {
var imageSize = this.files[0].size/1048576;
var imageType = this.files[0].type.toString();
//.... checking different condition for imageSize and imageType....///
});
该代码适用于 FireFox 和 Chrome,但在 IE9 中出现以下错误:
SCRIPT5007: Unable to get value of the property '0': object is null or undefined
我已经阅读了这篇文章,但是在 IE9 中真的没有办法做到这一点吗?
谢谢...