$(‘input‘).change(function(){ var fileObj = this.files[0]; //检查是否支持FileReader对象 if (typeof FileReader!= ‘undefined‘){ var acceptTypes = /\.(jpe?g|png)$/i; if ( !(acceptTypes.test(fileObj.name))){ alert(‘请上传jpg,png格式的文件‘); return; } if (fileObj.size>1*1024*1024){ alert(‘上传图片不能大于1M‘); return; } var reader = new FileReader(); reader.onload = function(){ var $img = $(‘<img>‘); $img.attr(‘src‘,this.result); $img.appendTo($(‘body‘)); } reader.readAsDataURL(fileObj); //文件转成base64 }
原文:http://www.cnblogs.com/joya0411/p/5182444.html