How to clear a form?

后端 未结 11 629
清歌不尽
清歌不尽 2020-12-03 01:34

For example I have a form like this:

11条回答
  •  情深已故
    2020-12-03 02:10

    A simple way to do it with JS:

    
       
    
    
    const { myForm } = document.forms;
    myForm.reset();
    

提交回复
热议问题