在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);
}
}