이 기사의 예에서는 js 호환 Firefox에서 업로드된 이미지의 미리보기 효과를 표시하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
<!doctype html> <html> <head> <meta content="text/html; charset=GBK" http-equiv="Content-Type" /> <title>Image preview example</title> <style type="text/css"> div {width:100px;height:100px;border: 1px #A3BFE7 solid;} img {width:atuo;height:atuo;} </style> <script type="text/javascript"> function viewPic() { var oFReader = new FileReader(); oFReader.onload = function(e) { document.getElementById("uploadPreview").src = e.target.result; } if (document.getElementById("uploadImage").files.length === 0) { return; } var oFile = document.getElementById("uploadImage").files[0]; oFReader.readAsDataURL(oFile); } </script> </head> <body> <input id="uploadImage" type="file" name="myPhoto" onchange='viewPic();'/><br> <img id="uploadPreview" src=""/> </body> </html>
작동 효과는 아래와 같습니다.
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.