标签: angular ionic3
在按键事件中,我无法确定新插入字符的位置。 反正有什么位置吗?
答案 0 :(得分:0)
要了解光标在按键/按键事件上的位置,我们需要selectionStart中的$event
selectionStart
$event
yourEvent(event) { const characterPosition = event.selectionStart; console.log('The cursor position on keydown is:', characterPosition); }