当前位置: 首页 > 工具软件 > Ender > 使用案例 >

react中 Ender键 触发事件数(输入框)

韦望
2023-12-01

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

 类似资料: