Textarea rows 屬性

Textarea 對象參考手冊 Textarea 對象

定義和用法

rows 屬性設(shè)置或返回 textarea 的高度。

語法

設(shè)置 rows 屬性:

textareaObject.rows=number

返回 rows 屬性:

textareaObject.rows

提示: rows 屬性沒有默認(rèn)值。

描述
number指定在文本區(qū)域中可見的行數(shù)


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流瀏覽器都支持 rows 屬性


實(shí)例

實(shí)例

更改文本域的可見行數(shù):

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult()
{
    document.getElementById("myTextarea").rows=10;
}
</script>
</head>
<body>

<textarea id="myTextarea" cols="20">
在W3Cschool在線教程,你可以學(xué)多很多編程的基礎(chǔ)知識(shí),包括 HTML, XML, SQL, ASP, 和 PHP 等各種前端內(nèi)容。
</textarea>
<br>

<button type="button" onclick="displayResult()">修改可見行數(shù)</button>

</body>
</html>



Textarea 對象參考手冊 Textarea 對象