在input 标签上添加 onKeyPress={this.handleKeyPress} <//input type=”text” onKeyPress={this.handleKeyPress}/> 函数:handleKeyPress = (e) => { if (e.key === ‘Enter’) { this.createNewToDoItem();//调用其他函数 } };
在input 标签上添加 onKeyPress={this.handleKeyPress} <//input type=”text” onKeyPress={this.handleKeyPress}/> 函数:handleKeyPress = (e) => { if (e.key === ‘Enter’) { this.createNewToDoItem();//调用其他函数 } };