Home > Mobile >  How to prevent Form submisson (Reactive Form in Angular) with dynamic input fields
How to prevent Form submisson (Reactive Form in Angular) with dynamic input fields

Time:04-24

Here is a enter image description here

CodePudding user response:

Set an attribute type="button" on the <button> element. By default HTML buttons in a form are of type submit

  • Related