Clear form fields with jQuery

前端 未结 30 3121
甜味超标
甜味超标 2020-11-22 15:48

I want to clear all input and textarea fields in a form. It works like the following when using an input button with the reset class:

$(\".reset         


        
30条回答
  •  轮回少年
    2020-11-22 16:31

    I use this :

    $(".reset").click(function() {
      $('input[type=text]').each(function(){
         $(this).val('');
      });
    });
    

    And here is my button:

    
      
         Reset
    
    

提交回复
热议问题