textarea 自适应内容高度

来源:互联网 发布:微商网站源码 编辑:程序博客网 时间:2024/06/05 09:39
$('textarea').each(function(){  this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;');  }).on('input',function(){  this.style.height = 'auto';  this.style.height = (this.scrollHeight) + 'px';})


返回顶部:

//返回顶部 $(window).scroll(function(){     var sc=$(window).scrollTop();if(sc>300){  $(".gethome").fadeIn(); }else{  $(".gethome").fadeOut(); }  })$(".gethome").click(function(){     var sc=$(window).scrollTop();     $('body,html').animate({scrollTop:0},300);    })



原创粉丝点击