HTML DOM 입력 FileUpload 값 속성은 파일 업로드 입력 버튼의 값 속성 내용을 반환합니다.
구문
다음은 구문입니다 -
object.value
예시
입력 FileUpload 값 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <title>HTML DOM name Property</title> <style> body{ background-color:#397367; color:#fff; padding:20px; } .btn{ display:block; background-color:#22223B; color:#fff; border:none; padding:0.5rem; border-radius:50px; width:80%; margin:10px; } .show-value{ font-weight:bold; font-size:1.4rem; color:#fff; } </style> </head> <body> <h1>FileUpload value Property Example</h1> <p>Please Select a File!</p> <input type="file"> <button onclick="getValue()" class="btn">Get File Upload Button Value</button> <div class="show-value"></div> <script> function getValue() { var chooseFileBtn= document.querySelector("input"); document.querySelector(".show-value").innerHTML ="Value = " + chooseFileBtn.value; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"파일 업로드 버튼 값 가져오기를 클릭합니다. ” 버튼을 눌러 입력 파일 업로드 버튼의 값 속성 내용을 가져옵니다.