Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để đặt lại hoặc xóa một biểu mẫu bằng JavaScript?


Đặ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. Làm thế nào để đặt lại hoặc xóa một biểu mẫu bằng JavaScript?

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>