js获取文本框中光标索引位置

工作中用到了,就mark下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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();
}
-------------本文结束 感谢您的阅读-------------