用一个div模拟textarea的实现

#textarea {
width:300px;
border:1px solid #ccc;
min-height:150px;
max-height:300px;
overflow: auto;
font-size: 14px;
outline: none;
}
<div id="textarea" contenteditable="true"></div>

 

contenteditable是HTML5的属性,兼容IE6以上,不用担心兼容性问题。

posted @ 2017-06-08 15:29  nalee  阅读(1363)  评论(0编辑  收藏  举报