H5实现本地预览图片,亲测有用
http://www.cnblogs.com/Cwj-XFH/p/6142745.html
把文中js函数的
document.getElementById('img').setAttribute('src', fileReader.result);
修改为:
$("#previewImg").html('<img src = "' + fileReader.result + '" style="width:300px;height:200px;" />');
然后input file 不用绑定onchange事件;showPreview函数不要
http://www.cnblogs.com/Cwj-XFH/p/6142745.html
把文中js函数的
document.getElementById('img').setAttribute('src', fileReader.result);
修改为:
$("#previewImg").html('<img src = "' + fileReader.result + '" style="width:300px;height:200px;" />');
然后input file 不用绑定onchange事件;showPreview函数不要
2017-09-12
H5实现本地预览图片
http://www.cnblogs.com/Cwj-XFH/p/6142745.html
亲测有用
老师讲的预览方式,大部分浏览器都不支持,因为取不到真实的文件本地地址
http://www.cnblogs.com/Cwj-XFH/p/6142745.html
亲测有用
老师讲的预览方式,大部分浏览器都不支持,因为取不到真实的文件本地地址
2017-09-12
最新回答 / 隔壁码农老唐
RequestDispatcher dispatcher = req.getRequestDispatcher("jsp/01.jsp"); dispatcher.forward(req, resp);要把request和response发送到前台
2017-08-28