摘要:[jquery] 及時顯示上傳的圖片
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);
});