任何人都可以告诉如何限制textarea在打字时的成长吗?我尝试使用max-height属性但没有用... textarea继续增长超过页面高度。
答案 0 :(得分:0)
尝试,
$(function(){
$(document).on('keydown','textarea',function(){
// you can change window to your container
if($(window).height()==$(this).height())
return false;
});
});