react中 Ender鍵 觸發事件數(輸入框)

cyccgirl發表於2018-08-27

在input 標籤上新增 onKeyPress={this.handleKeyPress} <//input type=”text” onKeyPress={this.handleKeyPress}/> 函式:handleKeyPress = (e) => { if (e.key === ‘Enter’) { this.createNewToDoItem();//呼叫其他函式 } };

相關文章