在文本区域中获取换行符

时间:2018-05-01 05:06:17

标签: javascript textarea selection

我想为textarea中的电子邮件创建一个提前输入机制。

如果我输入textarea,控件将自动自动换行文本,因此让我知道当前光标的位置(即x,y位置)取决于这些换行的位置。 (选择位置是光标开始处的字符数。)

我需要x任意y位置,以便我可以在光标下方定位可能的完成列表。

有没有办法从控件中提取这个换行符信息,或者我是否需要对其进行修改并执行自己的操作"文本换行算法(因为它不容易在javascript中测量文本宽度,因此很棘手。)

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

将所有内容与jQuery放在一起。如果您需要 JavaScript块,请告诉我。

$(function() {
  var textProps = [0, 0];
  $("textarea.allow-overflow").keyup(function(e) {
    var self = $(this);
    var text_width = $(".hidden").text(self.val()).css({
      'font-weight': self.css("font-weight"),
      'font-size': self.css("font-size"),
      'font-family': self.css("font-family"),
      'white-space': 'nowrap',
      'position': 'absolute',
      'display': 'block',
      'width': 'auto'
    }).hide().width();
    textProps[0] = $(".hidden").width();
    textProps[1] = $(".hidden").height();
    var overflows = text_width > self.width();
    var lines = 1;
    if (overflows) {
      lines = Math.floor(self.prop("scrollHeight") / $(".hidden").height());
      textProps[0] = textProps[0] - (self.width() * (lines - 1));
      textProps[1] = $(".hidden").height() * lines;
    }
    $(".report").html("X (Left): " + textProps[0] + "px, Y (Top): " + textProps[1] + "px, Wrap: " + overflows.toString() + ", Lines: " + lines);
  });
});
.widget label {
  display: block;
}

.widget .allow-overflow,
.report {
  width: 240px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.report {
  border: 1px dashed #ccc;
  font-size: 9px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="widget">
  <label>Type in me</label>
  <textarea class="allow-overflow"></textarea>
</div>
<div class="report">&nbsp;</div>
<div class="hidden"></div>

我们需要了解一些事情。

  1. 当我们溢出并在文本框中包装时。
  2. 文本框的宽度和字体属性
  3. 文字的行高
  4. 然后我们可以从文本框的[X (Left), Y (Top)]计算当前光标位置。当我们输入文字时,它会增加隐藏div的widthheight

    在第一行,这很容易,x = widthy = height。一旦我们换行,我们现在必须计算一个偏移量和行数。

    number of lines = floor( text box scroll height / hidden height )
    x pos on line = hidden width - (width of text box * number of lines)
    y pos = line height * number of lines
    

    您可以将其推入函数并将结果数据清​​理为数组或对象。

    如果允许调整大小,那么我们就不能指望文本框的静态宽度和高度。所以,对于我的例子,我每次都抓住那个细节。

    希望有所帮助。