Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM Input FileUpload ทรัพย์สินที่จำเป็น


คุณสมบัติที่จำเป็น FileUpload อินพุต HTML ส่งคืนและแก้ไขค่าของแอตทริบิวต์ที่จำเป็นของปุ่มอินพุตการอัปโหลดไฟล์ใน 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>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HTML DOM Input FileUpload ทรัพย์สินที่จำเป็น

คลิกที่ “ส่งแบบฟอร์ม ” โดยไม่เลือกไฟล์ใดๆ:

HTML DOM Input FileUpload ทรัพย์สินที่จำเป็น