Welcome 🎉

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Khái niệm


Tag <form> trong HTML được sử dụng để tạo một biểu mẫu trên trang web. Biểu mẫu này cho phép người dùng nhập dữ liệu và gửi nó đến một máy chủ để xử lý.


Cách sử dụng


<form action="/process-form" method="POST">
  <label for="name">Họ và tên:</label>
  <input type="text" id="name" name="name" required>

  <label for="email">Email:</label>
  <input type="email" id="email" name="email" required>

  <button type="submit">Gửi</button>
</form>






Kết quả

Trong ví dụ trên, khi người dùng nhấn nút “Gửi”, dữ liệu từ các trường nhập sẽ được gửi đến URL /process-form bằng phương thức POST.


Read More
On This Page