1
應該很簡單,但我似乎無法在Google中找到它。如何獲得HTML輸入元素中游標/插入符號的位置?
應該很簡單,但我似乎無法在Google中找到它。如何獲得HTML輸入元素中游標/插入符號的位置?
您將使用input
元素的selectionStart
或selectionEnd
屬性。
setInterval(function(){
console.log([document.getElementById("test").selectionStart, document.getElementById("test").
selectionEnd
------------
]);
}, 1000);
<input type="text" id="test"></input>