当前位置: 主机百科 » 资源 » 技术 » 正文

JQuery自动调整textarea内容高度

1
  // 自动伸缩,自动提交  $('textarea').keyup(function(e) {  if((e.ctrlKey && (e.which == 13 || e.which == 10)) || (e.altKey && e.which == 83)) {    //Ctrl+Enter执行    return false;  }      if(e.which == 13){ //输入回车键    var h = $(this)[0].scrollHeight;    if(h <= 100) {     return true;    } else {     $(this).height($(this)[0].scrollHeight);     return true;    }  }  });

未经允许不得转载:主机百科 » JQuery自动调整textarea内容高度

相关文章