html 实现 上传图片到页面,直接展示,不需要上传到服务器目录(实现图片预览功能)
html 实现 上传图片到页面,直接展示,不需要上传到服务器目录(实现图片预览功能) <html> <head> <meta charset="UTF-8"> <title></title> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <style type="text/css"> #preview { display: inline-block; width: 2.56rem; height: 2.56rem; position: relative; background-repeat: no-repeat; background-size: cover; } #file { width: 100%; height: 100%; opacity: 0; position: absolute; left: 0; top: 0; cursor: pointer; z-index: 5; } </style> </head> <body> <div id="preview" style="width:200px;heigth:200px;border:1px solid"> <input