首页 > web前端 > js教程 > 如何获取文本输入字段中的光标位置?

如何获取文本输入字段中的光标位置?

Mary-Kate Olsen
发布: 2024-12-14 01:14:12
原创
665 人浏览过

How to Get the Cursor Position in a Text Input Field?

输入字段中的光标位置

查询:

如何确定光标在输入字段中的位置(以字符为单位)文本输入字段?

答案:

改进的解决方案:

按照提供的响应中所述使用 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板