HTML DOM FileUpload 파일 속성은 파일 업로드 버튼으로 선택한 모든 파일을 포함하는 FileList 객체를 반환합니다.
구문
다음은 구문입니다 -
object.files
예시
FileUpload 파일 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <style> body{ text-align:center; background-color:#52B2CF; color:#fff; } .btn{ background-color:coral; border:none; height:2rem; border-radius:50px; width:60%; margin:1rem auto; display:block; color:#fff; outline:none; } .show{ font-size:1.2rem; color:#fff; font-weight:bold; } </style> </head> <body> <h1>DOM FileUpload files Property Example</h1> <p>Select some files</p> <input type="file" class="file-upload-btn" multiple> <button onclick = "showFiles()" class = "btn">Click me to see all selected file</button> <div class="show"></div> <script> function showFiles() { var fileBtn = document.querySelector(".file-upload-btn"); var showMsg = document.querySelector(".show"); showMsg.innerHTML=''; if(fileBtn.files.length === 0){ showMsg.innerHTML = "Please select at least one file!!"; } else { showMsg.innerHTML = "You selected these files:"; for(let i=0;i<fileBtn.files.length;i++) { showMsg.innerHTML += '<p>' + fileBtn.files[i].name + '<p>'; } } } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"선택한 모든 파일을 보려면 클릭하세요.를 클릭합니다. ” 버튼을 눌러 선택한 모든 파일을 표시합니다.