textarea自适应高度

项目中要求textarea自适应高度,在网上找到这个很好的方法 。记录下来以后备用。

function BodyOnLoad()
  {
      var textarea= document.getElementById("textarea");
      textarea.style.posHeight=textarea.scrollHeight;

  }

scrollHeight:获取对象的滚动高度。

posHeight:设置或获取以 height 标签属性指定的单位的对象高度。

把方法加在body的onload事件上

你可能感兴趣的:(javascript)