此http://jsfiddle.net/Mqvgx/适用于Windows浏览器,但不适用于Android手机。 有什么想法吗?
function getImgSize(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#testImg').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$('#testImg').on('load',function(){
alert($(this).width()+'*'+$(this).height());
})
$("input").change(function(){
getImgSize(this);
});