js获取文本框中光标索引位置 发表于 2017-05-20 | 分类于 other 工作中用到了,就mark下 1234567891011121314151617181920212223242526272829// js获取文本框中光标索引的位置function getInputTextCursorPosition(){ var obj = document.getElementById('input'); // 非IE浏览器 if (obj.selectionStart) { return obj.selectionStart; } // IE var range = document.selection.createRange(); range.moveStart('character', -obj.value.length); return range.text.length;}// js设置文本框中光标索引的位置function setInputTextCursorPosition(index){ var obj = document.getElementById('input'); // 非IE浏览器 if (obj.selectionStart) { obj.selectionStart = index; } // IE var range = obj.createTextRange(); range.move('character', index); range.select();} -------------本文结束 感谢您的阅读-------------