Textarea rows 屬性
Textarea 對象定義和用法
rows 屬性設置或返回 textarea 的高度。
語法
設置 rows 屬性:
textareaObject.rows=number
返回 rows 屬性:
textareaObject.rows
提示: rows 屬性沒有默認值。
值 | 描述 |
---|---|
number | 指定在文本區(qū)域中可見的行數 |
瀏覽器支持
所有主流瀏覽器都支持 rows 屬性
實例
實例
更改文本域的可見行數:
<!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在線教程,你可以學多很多編程的基礎知識,包括 HTML, XML, SQL, ASP, 和 PHP 等各種前端內容。
</textarea>
<br>
<button type="button" onclick="displayResult()">修改可見行數</button>
</body>
</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在線教程,你可以學多很多編程的基礎知識,包括 HTML, XML, SQL, ASP, 和 PHP 等各種前端內容。
</textarea>
<br>
<button type="button" onclick="displayResult()">修改可見行數</button>
</body>
</html>
Textarea 對象
更多建議: