이 기사의 예에서는 js 이미지 업로드 및 미리보기 기능을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
인터넷에 어떤 분들의 코드를 참고해서 실시간으로 사진을 올리고 미리보기 할 수 있는 기능을 작성해봤습니다
<img id="imgTag" style="height: 100px;" alt="" /> <input type="file" /> function DisplayImage(fileTag,imgTagId){ var allowExtention=".jpg.png.gif"; var extentionArr=fileTag.value.split('.'); var extention = extentionArr[extentionArr.length-1]; if(!(allowExtention.indexOf(extention)>-1)){ alert("Please upload image!"); }else{ //for adveced broswer(the newest ie,chrome,ff) if(typeof(FileReader)!=="undefined"){ var reader = new FileReader(); reader.readAsDataURL(fileTag.files[0]); reader.onload = function(e){ document.getElementById(imgTagId).setAttribute("src", e.target.result); } }else{ //for(ie6) document.getElementById(imgTagId).setAttribute("src",fileTag.value); } } }
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.