x
1
<style>
2
textarea.noscrollbars {
3
overflow: hidden;
4
width: 300px;
5
height: 100px;
6
}
7
</style>
8
9
<script>
10
function autoGrow (oField) {
11
if (oField.scrollHeight > oField.clientHeight) {
12
oField.style.height = oField.scrollHeight + "px";
13
}
14
}
15
</script>
16
17
<form>
18
<fieldset>
19
<legend>您的评论</legend>
20
<p><textarea class="noscrollbars" onkeyup="autoGrow(this);"></textarea></p>
21
<p><input type="submit" value="发送" /></p>
22
</fieldset>
23
</form>
24