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

NG selectionStart

江航
2023-12-01

target.selectionStart 表示光标位置

<textarea [(ngModel)]="value" (keyup)="getCaretPosWithEvent($event)"></textarea>
getCaretPosWithEvent (event: { target: any; }) {
    const target = event.target;
    if (target.selectionStart || target.selectionStart === 0) {
      console.log(target.selectionStart);
    }
  }
 类似资料:

相关阅读

相关文章

相关问答