“Редактируемый предварительный входной реагирование” Ответ

Редактируемый предварительный входной реагирование

class App extends Component {
  constructor() {
    super();
    this.state = {
      inputValue: 'http://localhost:3000'
    };
    this.handleChange = this.handleChange.bind(this);
  }

   handleChange(e){
    console.log(e.target.value);
    this.setState({inputValue: e.target.value});
  }

  render() {
    return (
      <div>
        <input type="text" value={this.state.inputValue} onChange={this.handleChange} />
      </div>
    );
  }
}
Dark Duck

Редактируемый предварительный входной реагирование

import React, { useState } from 'react';

function Example() {
  const [url, setUrl] = useState("http://localhost:3000");

  return (
    <div>
      <input type="text" value={url} onChange={(e) => setUtl(e.target.value)} />
    </div>
  );
}
Dark Duck

Ответы похожие на “Редактируемый предварительный входной реагирование”

Вопросы похожие на “Редактируемый предварительный входной реагирование”

Больше похожих ответов на “Редактируемый предварительный входной реагирование” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования