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

แอตทริบิวต์การดำเนินการแบบฟอร์ม HTML


แอตทริบิวต์การดำเนินการแบบฟอร์ม HTML กำหนดตำแหน่งที่จะส่งข้อมูลแบบฟอร์มเมื่อส่งแบบฟอร์มในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

<form action=”URL”></form>

ให้เราดูตัวอย่างของแอตทริบิวต์การกระทำแบบฟอร์ม HTML -

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
      text-align: center;
   }
   input {
      width: 315px;
      display: block;
      margin: 1rem auto;
      border: 2px solid #fff;
      padding: 8px;
      background: transparent;
      border-radius: 20px;
      outline: none;
   }
   ::placeholder {
      color: #000;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 20px;
      width: 330px;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
</style>
<body>
<h1>HTML Form action Attribute Demo</h1>
<form action="/action_page.php" method="get">
<input type="text" name="firstname" placeholder="Enter First Name">
<input type="text" name="lastname" placeholder="Enter Last Name">
<input type="submit" value="SUBMIT" class="btn">
</form>
</body>
</html>

ผลลัพธ์

แอตทริบิวต์การดำเนินการแบบฟอร์ม HTML

ป้อนรายละเอียดแบบฟอร์มแล้วส่งแบบฟอร์มโดยใช้ “ส่ง ” เพื่อสังเกตการทำงานของแอททริบิวต์

แอตทริบิวต์การดำเนินการแบบฟอร์ม HTML