如何在max-height之后使用css或jquery限制textarea的增长?

时间:2013-06-03 09:41:50

标签: jquery html5 jquery-mobile

任何人都可以告诉如何限制textarea在打字时的成长吗?我尝试使用max-height属性但没有用... textarea继续增长超过页面高度。

1 个答案:

答案 0 :(得分:0)

尝试,

$(function(){
    $(document).on('keydown','textarea',function(){
        // you can change window to your container
        if($(window).height()==$(this).height())
            return false;
    });
});