中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何实现TextInput输入完内容后点击回车的监听?
微信扫码分享
@Entry @Component struct Index { build() { Column() { TextInput({ placeholder: 'input your username' }).margin({ top: 20 }) .onSubmit((EnterKeyType)=>{ console.log("点击了回车") }) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }