角度this.el.nativeElement.selectionStart始终为null

时间:2018-08-01 15:56:51

标签: angular angular6 angular-directive

在Angular指令中,我想检查是否选择了输入文本,所以我使用 this.el.nativeElement.selectionEnd和this.el.nativeElement.selectionStart但都为空,是否有任何线索?谢谢

export class myDirective {

  constructor(private el: ElementRef) {}

  @HostListener('keydown', ['$event'])
  onKeyDown(event: KeyboardEvent) {
     console.log(this.el.nativeElement.selectionStart);
  }
}

0 个答案:

没有答案