HTML DOM 입력 FileUpload 필수 속성은 HTML에서 파일 업로드 입력 버튼의 필수 속성 값을 반환하고 수정합니다.
구문
다음은 구문입니다 -
1. 반품 필수
object.required
2. 수정 필요
object.required = true|false
예시
HTML DOM 입력 파일 업로드 필수 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <title>HTML DOM file upload required Property</title> <style> body{ text-align:center; } .btn{ display:block; margin:1rem auto; background-color:#db133a; color:#fff; border:1px solid #db133a; padding:0.5rem; border-radius:50px; width:20%; } .show-message{ font-weight:bold; font-size:1.4rem; color:#ffc107; } </style> </head> <body> <h1>file upload required Property Example</h1> <form id="form" method="post" action=""> <fieldset> <legend >Form </legend> <input type="file" required> <input type="submit" class="btn" value="Submit Form" onclick="checkRequired()"> </fieldset> </form> <div class="show-message"></div> <script> function checkRequired(){ var fileBtn=document.querySelector("input[type='file']"); if(fileBtn.value === ""){ document.querySelector(".show-message").innerHTML = "Please Select a File!"; } } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
'양식 제출을 클릭합니다. 파일을 선택하지 않고 ” 버튼: