html5 div 模拟textarea

来源:互联网 发布:苹果电脑激活windows 编辑:程序博客网 时间:2024/06/05 10:28
<style>    #textarea {         width:300px;         border:1px solid #eee;         min-height:150px;         max-height:300px;         overflow: scroll;         font-size: 14px;         outline: none;     }</style><div id="textarea" contenteditable="true"></div>

contenteditable 是HTML5的属性,但是IE已经支持了