“Jak wyłączyć przycisk w reakcie w oparciu o warunek” Kod odpowiedzi

reaguj warunkowo wyłącz przycisk

// Input field listens to change, updates React's state and re-renders the component.
<input onChange={e => this.setState({ value: e.target.value })} value={this.state.value} />

// Button is disabled when input state is empty.
<button disabled={!this.state.value} />
Nasty Narwhal

Jak wyłączyć przycisk w reakcie w oparciu o warunek

import { useState } from "react";

function MyComponent(){
	const [disabled, setDisabled] = useState(false);
	return (
    	<button disabled={disabled} onClick={setDisabled}>Click to Disable</button>
    )
}
elcharitas

Odpowiedzi podobne do “Jak wyłączyć przycisk w reakcie w oparciu o warunek”

Pytania podobne do “Jak wyłączyć przycisk w reakcie w oparciu o warunek”

Więcej pokrewnych odpowiedzi na “Jak wyłączyć przycisk w reakcie w oparciu o warunek” w JavaScript

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

Przeglądaj inne języki kodu