我正在使用新浏览器的功能(HTML5 API - 文件支持)以这种方式使用jquery获取上传文件的大小和类型。
$(function() {
$('#myFile').bind('change', function() {
//gets the size and the type of your file.
var fsize = $('#myFile')[0].files[0].size;
var ftype = $('#myFile')[0].files[0].type;
alert("size : " + fsize + " type : " + ftype);
});
});
我想知道我是否可以使用外部库(Modernizr,html5shim等)来实现这些功能 即使在较旧的浏览器上,例如IE8。
感谢。
答案 0 :(得分:0)
较旧的浏览器不支持HTML5,因此无法实现这些功能。