“deshabilitar un botón reaccionar” Código de respuesta

deshabilitar un botón reaccionar

// 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

Botón Desactivar en JSX

const buttonRef = useRef();

const disableButton = () =>{
  buttonRef.current.disabled = true; // this disables the button
 }

<button
className="btn btn-primary mt-2"
ref={buttonRef}
onClick={disableButton}
>
    Add
</button>
Lucky Ladybird

Respuestas similares a “deshabilitar un botón reaccionar”

Preguntas similares a “deshabilitar un botón reaccionar”

Más respuestas relacionadas con “deshabilitar un botón reaccionar” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código