import React, { Component } from 'react' class App extends Component { constructor(props) { super(props) //this.state = {} 定義數據 this.state = { inputValue: "" } } render() { return ( <div> {/* react裏使用表達式,須要用大括號 */} {/* react裏綁定事件用駝峯命名,如,onChange */} {/* react裏須要改變this的指向,用bind(this) 把this指向到這個標籤裏 */} <input type="text" value={this.state.inputValue} onChange={this.change.bind(this)} /> </div> ) } change(e) { console.log(e.target.value); //設置數據的值,用this.setState({}) this.setState({ inputValue: e.target.value }) } } export default App;