Đặt lại hoặc xóa biểu mẫu bằng JavaScript với phương thức reset (). Phương pháp đặt lại đặt giá trị của tất cả các phần tử trong một biểu mẫu giống như cách nhấp vào nút đặt lại.
Ví dụ
Bạn có thể thử chạy mã sau để đặt lại biểu mẫu bằng JavaScript -
<!DOCTYPE html> <html> <head> <title>Reset HTML form</title> </head> <body> <form id="newForm"> Student Name<br><input type="text" name="sname"><br> Student Subject<br><input type="password" name="ssubject"><br> <input type="button" onclick="newFunction()" value="Reset"> </form> <script> function newFunction() { document.getElementById("newForm").reset(); } </script> </body> </html>