码迷,mamicode.com
首页 > Web开发 > 详细

Jquery实现 TextArea 文本框根据输入内容自动适应高度

时间:2014-05-19 18:12:52      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:style   class   c   tar   ext   http   

原文 Jquery实现 TextArea 文本框根据输入内容自动适应高度

在玩微博的时候我们可能会注意到一个细节就是不管是新浪微博还是腾讯微博在转发和评论的时候给你的默认文本框的高度都不会很高,这可能是版面的限制和用户通常只转播或者评论一个短句有关。但是当你输入超过一行文字的时候,TextArea自动适应高度,大大改善了体验,这样用户就可以看到全部的文字。不用再去拖动文本框的滚动条。

 

如下图:

bubuko.com,布布扣

 

这些在平时的项目中挺实用的,所以抽空封装了一个文本框根据输入内容自适应高度的插件 - TextArea

 

我们来看看代码:

jquery代码:

(function($){

$.fn.autoTextarea = function(options) {

var defaults={

maxHeight:null,//文本框是否自动撑高,默认:null,不自动撑高;如果自动撑高必须输入数值,该值作为文本框自动撑高的最大高度

minHeight:$(this).height() //默认最小高度,也就是文本框最初的高度,当内容高度小于这个高度的时候,文本以这个高度显示

};

var opts = $.extend({},defaults,options);

return $(this).each(function() {

$(this).bind("paste cut keydown keyup focus blur",function(){

var height,style=this.style;

this.style.height =  opts.minHeight + ‘px‘;

if (this.scrollHeight > opts.minHeight) {

if (opts.maxHeight && this.scrollHeight > opts.maxHeight) {

height = opts.maxHeight;

style.overflowY = ‘scroll‘;

} else {

height = this.scrollHeight;

style.overflowY = ‘hidden‘;

}

style.height = height  + ‘px‘;

}

});

});

};

})(jQuery);

 

调用代码:

$(".chackTextarea-area").autoTextarea({
        maxHeight:220,//文本框是否自动撑高,默认:null,不自动撑高;如果自动撑高必须输入数值,该值作为文本框自动撑高的最大高度
    })

DEMO页面:http://www.yuzi.me/Demo/autoTextArea.html

Jquery实现 TextArea 文本框根据输入内容自动适应高度,布布扣,bubuko.com

Jquery实现 TextArea 文本框根据输入内容自动适应高度

标签:style   class   c   tar   ext   http   

原文地址:http://www.cnblogs.com/lonelyxmas/p/3734799.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!