如何在HTML输入元素中获取光标/插入符的位置?

时间:2009-05-06 05:28:17

标签: javascript

应该很简单,但我似乎无法在Google中找到它。

1 个答案:

答案 0 :(得分:1)

您可以使用 #footer { bottom: 0; height: 100px; width: 100%; background-color: black; position: fixed; text-align: center; color: #fff; } 元素的selectionStartselectionEnd属性。



input

setInterval(function(){
  console.log([document.getElementById("test").selectionStart, document.getElementById("test").

selectionEnd
------------

]);
}, 1000);