HTMLTextAreaElement: rows 属性

Baseline 已广泛支持

此特性已相当成熟,可在许多设备和浏览器版本上使用。自 ⁨2015 年 7 月⁩以来,各浏览器均已提供此特性。

HTMLTextAreaElement 接口的 rows 属性是一个正整数,表示文本控件可见的文本行数。它反映了 <textarea> 元素的 rows 属性。

一个正整数。默认为 2

示例

js
const textareaElement = document.getElementById("comment");
const textLines = textArea.rows;
textArea.rows = textLines + 2;

规范

规范
HTML
# dom-textarea-rows

浏览器兼容性

另见