jQuery实现textarea自动增长宽高的方法
本文实例讲述了jQuery实现textarea自动增长宽高的方法。分享给大家供大家参考,具体如下:
<scripttype="text/javascript"> $(function(){ $("#iptcont").bind("keydown",function(e){ varkey=e.which,that=this,h=20; if(key==13){ varbrs=$(this).val().split("\n").length+1; $(this).attr("rows",brs).height(h*brs); }elseif(key==8){ window.setTimeout(function(){ varbrs=$(that).val().split("\n").length; $(that).attr("rows",brs).height(h*brs); },100); } }); }); </script> <body> <textareaid="iptcont"rows="1"style="border:none;height:20px;border-bottom:1pxsolidblue;width:200px;resize:none;font-size:18px;line-height:20px;overflow:hidden;"></textarea> </body>
希望本文所述对大家jQuery程序设计有所帮助。