Form control là gì?

Noun HTML
control control element

Form control là control của giao diện người dùng (user interface) đóng vai trò là điểm kết nối giữa người dùng và máy chủ. Ví dụ các form control như các thẻ <input>, <textarea>, <select> v.v.

Bên dưới là code ví dụ về ba form control <input> trong HTML:


 <form action="/action_page.php">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <input type="submit" value="Submit">
</form> 

Learning English Everyday