jquery – 在textarea中显示行号

前端之家收集整理的这篇文章主要介绍了jquery – 在textarea中显示行号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在textarea中显示行号,这样可以在jQuery中:

我在SO上寻找答案,但我找不到我想要的

Display current line and column number for a textarea

Limit number of lines in textarea and Display line count using jQuery

此外,我从JSFiddle尝试的解决方案从评论中提供了这样的textarea:

哪条线1234是第一行,第二行是5678

解决方法

下载这里找到的插件http://alan.blog-city.com/jquerylinedtextarea.htm

用法

$(function() {

  // Target all classed with ".lined"
  $(".lined").linedtextarea(
    {selectedLine: 1}
  );

  // Target a single one
  $("#mytextarea").linedtextarea();

});

功能完整的演示:http://files.aw20.net/jquery-linedtextarea/jquery-linedtextarea.html

原文链接:/jquery/179610.html

猜你在找的jQuery相关文章