我们经常会遇到,填写资料上传图片,要预览图片的需求
以下提供两种方法在浏览器中临时预览上传的图片,
附上源码,以供学习探讨:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
img {
overflow: auto;
}
</style>
</head>
<body>
<form action="">
<input type="file" id="files">
<br>
<img src="" alt="" id="img">
</form>
</body>
<