Obtener la posición del cursor (en caracteres) dentro de un campo de entrada de texto
¿Cómo puedo obtener la posición del cursor desde un campo de entrada?
Encontré algunos fragmentos a través de Google, pero nada a prueba de balas.
Básicamente, algo como un complemento jQuery sería ideal, así que simplemente podría hacer
$("#myinput").caretPosition()
Actualización más sencilla:
Utilice field.selectionStart
el ejemplo en esta respuesta .
Gracias a @commonSenseCode por señalar esto.
Antigua respuesta:
Encontré esta solución. No está basado en jquery pero no hay problema para integrarlo a jquery:
/*
** Returns the caret (cursor) position of the specified text field (oField).
** Return value range is 0-oField.value.length.
*/
function doGetCaretPosition (oField) {
// Initialize
var iCaretPos = 0;
// IE Support
if (document.selection) {
// Set focus on the element
oField.focus();
// To get cursor position, get empty selection range
var oSel = document.selection.createRange();
// Move selection start to 0 position
oSel.moveStart('character', -oField.value.length);
// The caret position is selection length
iCaretPos = oSel.text.length;
}
// Firefox support
else if (oField.selectionStart || oField.selectionStart == '0')
iCaretPos = oField.selectionDirection=='backward' ? oField.selectionStart : oField.selectionEnd;
// Return results
return iCaretPos;
}
Usar selectionStart
. Es compatible con todos los principales navegadores .
document.getElementById('foobar').addEventListener('keyup', e => {
console.log('Caret at: ', e.target.selectionStart)
})
<input id="foobar" />
Esto funciona solo cuando no se define ningún tipo type="text"
o type="textarea"
en la entrada.
He incluido la funcionalidad en la respuesta de bezmax en jQuery si alguien quiere usarla.
(function($) {
$.fn.getCursorPosition = function() {
var input = this.get(0);
if (!input) return; // No (input) element found
if ('selectionStart' in input) {
// Standard-compliant browsers
return input.selectionStart;
} else if (document.selection) {
// IE
input.focus();
var sel = document.selection.createRange();
var selLen = document.selection.createRange().text.length;
sel.moveStart('character', -input.value.length);
return sel.text.length - selLen;
}
}
})(jQuery);
Tengo una solución muy simple . Pruebe el siguiente código con resultado verificado :
<html>
<head>
<script>
function f1(el) {
var val = el.value;
alert(val.slice(0, el.selectionStart).length);
}
</script>
</head>
<body>
<input type=text id=t1 value=abcd>
<button onclick="f1(document.getElementById('t1'))">check position</button>
</body>
</html>
Te estoy dando la demostración de fiddle_demo.