使用 jquery 的行号

发布于 2024-09-18 07:06:07 字数 409 浏览 4 评论 0原文

  <div id="line_numbers"></div>
  <textarea cols="65" rows="15" name="comments" id="comments"></textarea>
  <textarea cols="65" rows="15" name="matches" id ="matches"></textarea>

有很多例子( Html 添加行号到文本区域 )但我只想使用 jquery 实现文本区域的行号。请让我知道如何去做。任何帮助将不胜感激

  <div id="line_numbers"></div>
  <textarea cols="65" rows="15" name="comments" id="comments"></textarea>
  <textarea cols="65" rows="15" name="matches" id ="matches"></textarea>

there are many examples out there(
Html adding line numbers to textarea
) but i just want to implement line numbers for a text area using jquery.Please let me know how to go about it.Any help would be really appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゃ人海孤独症 2024-09-25 07:06:07

我还没有研究过任何插件。不过,这里有一个简单的入门方法。

CSS:

#line_numbers {clear:both; float: left; text-align: right}

jQuery:

   $("#comments").change(function() {
     var comment_lines = $("#comments").val().split('\n');      
     $("#line_numbers").html('');
     for(i = 0; i < comment_lines.length; i++) {
        $("#line_numbers").html($("#line_numbers").html() + (i+1) + "<br/>");
     }
   });

I haven't looked into any plugins. However, here's a simple way for you to get started.

CSS:

#line_numbers {clear:both; float: left; text-align: right}

jQuery:

   $("#comments").change(function() {
     var comment_lines = $("#comments").val().split('\n');      
     $("#line_numbers").html('');
     for(i = 0; i < comment_lines.length; i++) {
        $("#line_numbers").html($("#line_numbers").html() + (i+1) + "<br/>");
     }
   });
万劫不复 2024-09-25 07:06:07

我从未使用过它,但还有 JQuery Lined TextArea 插件

I've never used it, but there's also the JQuery Lined TextArea plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文