HTML DOM 中的 Textarea type 属性用于返回 Textarea 字段的表单元素的类型。请注意,对于 Textarea 对象,它将始终返回“textarea”。
用法:
textareaObject.type
返回值:它返回一个字符串值,表示 Textarea 字段的表单元素的类型。
例子:以下示例程序旨在说明文本区域类型HTML DOM 中的属性。
HTML
<!DOCTYPE html>
<html>
<body style="text-align:center">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>DOM Textarea type Property</b>
<br><br>
<!-- Assigning id to textarea. -->
<textarea id="myGeeks" rows="5" autofocus>
GeeksForGeeks. A computer science portal for Geeks.
</textarea>
<br><br>
<button onclick="myGeeks()">Submit</button>
<p id="sudo" style="font-size:20px;color:green;"></p>
<script>
function myGeeks() {
// Get the type of textarea
var type =
document.getElementById("myGeeks").type;
// Set the type to the innerHTML
document.getElementById("sudo").innerHTML = type;
}
</script>
</body>
</html>
输出:
支持的浏览器:
- 谷歌浏览器1
- 边 12
- 互联网浏览器 5
- 火狐1
- Opera 12.1
- 野生动物园 1
相关用法
- HTML DOM Textarea form属性用法及代码示例
- HTML DOM Textarea name属性用法及代码示例
- HTML DOM Textarea defaultValue属性用法及代码示例
- HTML DOM Textarea maxLength属性用法及代码示例
- HTML DOM Textarea placeholder属性用法及代码示例
- HTML DOM Textarea select()用法及代码示例
- HTML DOM Textarea required属性用法及代码示例
- HTML DOM Textarea autofocus属性用法及代码示例
- HTML DOM Textarea wrap属性用法及代码示例
- HTML DOM Textarea readOnly属性用法及代码示例
- HTML DOM Textarea disabled属性用法及代码示例
- HTML DOM Textarea cols属性用法及代码示例
- HTML DOM Textarea rows属性用法及代码示例
- HTML DOM Textarea value属性用法及代码示例
- HTML DOM Textarea用法及代码示例
- HTML DOM TableData colSpan属性用法及代码示例
- HTML DOM Table tHead属性用法及代码示例
- HTML DOM Table tFoot属性用法及代码示例
- HTML DOM Table caption属性用法及代码示例
- HTML DOM TableData rowSpan属性用法及代码示例
- HTML DOM TableHeader abbr属性用法及代码示例
- HTML DOM TableData headers属性用法及代码示例
- HTML DOM Table createTHead()用法及代码示例
- HTML DOM Table insertRow()用法及代码示例
- HTML DOM Table deleteCaption()用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML DOM Textarea type Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。