论坛首页 Web前端技术论坛

实现js 动态加载textarea内容的高度

浏览 2892 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2011-06-17  

在很多时候,我们需要用textarea来显示内容,因为这样可以不必去处理textarea填写的数据,显示的时候不用在转换,但是高度是一个问题。昨天碰上了就研究了一下,发现不是很难,直接上代码了。

//定义css,无边框,不可修改,选中的时候取消边线.自动滚动条,不可改变大小
.text_readonly{zoom:1;outline:0;line-height:20px;
background-color:#fff;border:0px; width:500px;overflow-y:auto;resize: none;}
//js 改变大小的方法
function text_readonly(){
	var mc = document.getElementById("text_content");
	if(mc != null && mc.value.length>0){
  		mc.rows = (mc.scrollHeight/20+2);
  	}
}
//text文本 怎么放内容看各种语言
<textarea class="text_readonly" disable="true" id="text_content" name="text_content" rows="4">
Assuming you have the Globalize
 plugin installed, the first thing you
 llneed to do is to generate its migration
 fileIf you want data for a full</textarea>
//在文本下调用即可
text_readonly()
 
论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics