0

谁能告诉如何限制打字时textarea的增长?我尝试使用 max-height 属性,但没有用...... textarea 继续增长超过页面高度。

4

1 回答 1

0

尝试,

$(function(){
    $(document).on('keydown','textarea',function(){
        // you can change window to your container
        if($(window).height()==$(this).height())
            return false;
    });
});
于 2013-06-03T09:43:53.517 回答