<p style="Box-sizing: border-Box; margin-top: 0px; margin-bottom: 19.7969px; color: rgb(51,51,51); white-space: normal;">input file上传图片显示图片
$('.a').change(function(e) { var _URL = window.URL || window.webkitURL; var file, img; if ((file = this.files[0])) { img = new Image(); img.onload = function() { $('.img').attr('src', this.src); console.log(this.width) }; img.src = _URL.createObjectURL(file); } })