在项目开发中经常遇到input等设置光标位置到最后的问题,今天我查了一下Google,找到了在IE、Firefox、Opera等主流浏览器的获取光标位置(getCursortPosition)以及设置光标位置(setCursorPosition)的函数。
function getCursortPosition (ctrl) {//获取光标位置函数
> var CaretPos = 0; // IE Support
> if (document.selection) {
> ctrl.focus ();
> var Sel = document.selection.createRange ();
> Sel.moveStart ('character', -ctrl.value.length);
> CaretPos = Sel.text.length;
> }
> // Firefox support
> else if (ctrl.selectionStart || ctrl.selectionStart == '0')
> CaretPos = ctrl.selectionStart;
> return (CaretPos);
> }