[jQuery 플러그인] autoTextarea - 텍스트 상자는 입력 내용에 따라 고도에 적응 [고구마 빛 공유]


[jQuery 플러그인] autoTextarea - 텍스트 상자는 입력 내용에 따라 높이에 적응합니다.


 
(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});

 
다음에서 시작합니다.http://www.css88.com/archives/3948
 
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
고구마요 2013년 1월 26일 10:27:18 토요일
 

좋은 웹페이지 즐겨찾기