我们如何确定按键事件时角色的位置?

时间:2019-05-09 06:00:31

标签: angular ionic3

在按键事件中,我无法确定新插入字符的位置。 反正有什么位置吗?

1 个答案:

答案 0 :(得分:0)

要了解光标在按键/按键事件上的位置,我们需要selectionStart中的$event

  yourEvent(event) {
    const characterPosition = event.selectionStart;
    console.log('The cursor position on keydown is:', characterPosition);
  }