HTMLTextAreaElement: type property
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Thuộc tính chỉ đọc type của giao diện HTMLTextAreaElement trả về chuỗi "textarea".
Giá trị
Chuỗi "textarea".
Ví dụ
js
const textArea = document.querySelector("textarea");
console.log(textArea.type); // "textarea"
Đặc tả kỹ thuật
| Specification |
|---|
| HTML> # dom-textarea-type-dev> |