typescript KEYUP按键事件过滤

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript KEYUP按键事件过滤相关的知识,希望对你有一定的参考价值。

@Component({
  selector: 'app-key-up3',
  // 使用keyup.enter快捷方式来过滤回车按键的消息
  template: `
    <input #box (keyup.enter)="onEnter(box.value)">
    <p>{{value}}</p>
  `
})
export class KeyUpComponent_v3 {
  value = '';
  onEnter(value: string) { this.value = value; }
}

以上是关于typescript KEYUP按键事件过滤的主要内容,如果未能解决你的问题,请参考以下文章

WinForm中的键盘按键 KeyDown,KeyPress和KeyUp事件

jquery 键盘事件 keypress() keydown() keyup()

keydown/keypress/keyup

按键事件笔记

Vue之@click事件修饰符@click.stop与@click.prevent按键修饰符@keyup.enter

Vue之@click事件修饰符@click.stop与@click.prevent按键修饰符@keyup.enter