“Forma acción usando React” Código de respuesta

Forma acción usando React

class EssayForm extends React.Component {
  constructor(props) {
    super(props);
    this.state = {      value: 'Please write an essay about your favorite DOM element.'    };
    this.handleChange = this.handleChange.bind(this);
    this.handleSubmit = this.handleSubmit.bind(this);
  }

  handleChange(event) {    this.setState({value: event.target.value});  }
  handleSubmit(event) {
    alert('An essay was submitted: ' + this.state.value);
    event.preventDefault();
  }

  render() {
    return (
      <form onSubmit={this.handleSubmit}>
        <label>
          Essay:
          <textarea value={this.state.value} onChange={this.handleChange} />        </label>
        <input type="submit" value="Submit" />
      </form>
    );
  }
}
Hungry Hornet

Forma acción usando React

<textarea>
  Hello there, this is some text in a text area
</textarea>
Hungry Hornet

Respuestas similares a “Forma acción usando React”

Preguntas similares a “Forma acción usando React”

Más respuestas relacionadas con “Forma acción usando React” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código