“PreventDefault Nie działający formularz Prześlij React” Kod odpowiedzi

PreventDefault Nie działa reakcja

//think if you are adding your submit handler function in the submit button
//or into the form itself
const handler = () => {
  e.preventDefault();
}
<form onSubmit={handler}> //good
<button type="submit" onSubmit={handler}> // bad  
Johiny

PreventDefault Nie działający formularz Prześlij React

const onSubmit = (e) => {
		e.preventDefault();
		// logic here
	};
// your form here
	<form id="myform" onSubmit={onSubmit /*or any name*/}>
      <div className="form-group">
      </div>
	</form>
TP

Odpowiedzi podobne do “PreventDefault Nie działający formularz Prześlij React”

Pytania podobne do “PreventDefault Nie działający formularz Prześlij React”

Więcej pokrewnych odpowiedzi na “PreventDefault Nie działający formularz Prześlij React” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu