是否可以使用keydown事件将索引检索到光标所在的文本区域?
答案 0 :(得分:2)
是的,是的。
textarea.addEventListener('keydown', function (){
console.log(textarea.selectionEnd); //The position of the cursor. If something is selected, then the position of the end of the selection.
}, false);
此功能不适用于IE。在IE中,您必须使用document.createTextRange()
。
答案 1 :(得分:0)
请参阅以下链接以了解实施情况。您可以在getCaret
事件上调用keydown
函数来获取插入符号的索引: