与get cursor position in text类似,我想使用ng-keydown
函数在文本中获取鼠标光标位置:
因此,如果用户想要删除char
中的x String
,我将获得x
。
<input
name="inputText"
type="text"
ng-keypress="changeInput($event)"
ng-keydown="backSpace($event)"
>
控制器:
vm.changeInput = function(e){
e.preventDefault();
//get cusor position in input text
//some more logic goes here
};
感谢。