查询:
如何确定光标在输入字段中的位置(以字符为单位)文本输入字段?
答案:
改进的解决方案:
按照提供的响应中所述使用 field.selectionStart。
原创解决方案:
对于非 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; }
以上是如何获取文本输入字段中的光标位置?的详细内容。更多信息请关注PHP中文网其他相关文章!