首页 > web前端 > js教程 > 正文

实例详解JavaScript如何给Textarea文本框添加行号

巴扎黑
发布: 2017-09-08 11:28:34
原创
2866人浏览过

本文实例讲述了js给textarea文本框添加行号的方法。分享给大家供大家参考。具体如下:

这里使用JS实现让Textarea文本框显示行号的功能,每一行的前面都会有下数字序号,如果用来显示代码的话,可以直接找到某一行,如果不显示行号,则还要自己手功去查,想要此功能,你只需设置好TextArea ID,并加入代码中的JavaScript代码部分即可,文本框的长宽则是由CSS来控制的,你可试着修改一下,长宽的显示要与JS相匹配。

运行效果截图如下:

在线演示地址如下:

立即学习Java免费学习笔记(深入)”;

http://demo.jb51.net/js/2015/js-textarea-show-row-num-codes/

具体代码如下:

<html> 
<head>
<title>Js给文本框添加行号功能</title>
<style type="text/css">
 #codeTextarea{width: 500px;height: 310px;}
.textAreaWithLines{font-family: courier;border: 1px solid #ddd;}
.textAreaWithLines textarea,.textAreaWithLines p{border: 0px;line-height: 120%;font-size: 12px;}
.lineObj{color: #666;}
</style>
<script type="text/javascript">
var lineObjOffsetTop = 2;
function createTextAreaWithLines(id)
{
  var el = document.createElement("p");
  var ta = document.getElementById(id);
  ta.parentNode.insertBefore(el,ta);
  el.appendChild(ta);
  el.className="textAreaWithLines";
  el.style.width = (ta.offsetWidth + 30) + "px";
  ta.style.position = "absolute";
  ta.style.left = "30px";
  el.style.height = (ta.offsetHeight + 2) + "px";
  el.style.overflow="hidden";
  el.style.position = "relative";
  el.style.width = (ta.offsetWidth + 30) + "px";
  var lineObj = document.createElement("p");
  lineObj.style.position = "absolute";
  lineObj.style.top = lineObjOffsetTop + "px";
  lineObj.style.left = "0px";
  lineObj.style.width = "27px";
  el.insertBefore(lineObj,ta);
  lineObj.style.textAlign = "right";
  lineObj.className="lineObj";
  var string = "";
  for(var no=1;no<20;no++){
   if(string.length>0)string = string + "<br>";
   string = string + no;
  }
   ta.onkeydown = function() { positionLineObj(lineObj,ta); };
   ta.onmousedown = function() { positionLineObj(lineObj,ta); };
   ta.onscroll = function() { positionLineObj(lineObj,ta); };
   ta.onblur = function() { positionLineObj(lineObj,ta); };
   ta.onfocus = function() { positionLineObj(lineObj,ta); };
   ta.onmouseover = function() { positionLineObj(lineObj,ta); };
   lineObj.innerHTML = string;
  }
function positionLineObj(obj,ta)
{
   obj.style.top = (ta.scrollTop * -1 + lineObjOffsetTop) + "px";  
}
</script>
</head>  
<body>
<form>
<textarea id="codeTextarea"></textarea>
</form>
<script type="text/javascript">
createTextAreaWithLines("codeTextarea");
</script>
</body>
</html>
登录后复制

以上就是实例详解JavaScript如何给Textarea文本框添加行号的详细内容,更多请关注php中文网其它相关文章!

java速学教程(入门到精通)
java速学教程(入门到精通)

java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号