上传文件的 api 可以获得图片具体的二进制信息 :window.URL.createObjectURL(dom.files[0]);在页面内放一个图像标签,利用<img src="图片的二进制源码"/>展现图片input 表单的onchange事件如:οnchange=f(img.src = window.URL.createObjectURL(dom.files[0]));