type
Textarea type 属性
定义和用法
type 属性返回表单元素的类型。
对于文本框永远是 "textarea"。
语法
textareaObject.type
浏览器支持
所有主流浏览器都支持 type 属性
实例
本例返回 textarea 元素所属的表单类型:
<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTextarea").type);
}
</script>
</head>
<body>
<textarea id="myTextarea" cols="20">
在w3cschool布布教程你会找到你要学习的教程,包括基础教程HTML,高级教程 XML, SQL, ASP, 和 PHP。
</textarea>
<br>
<button type="button" onclick="displayResult()">Alert type</button>
</body>
</html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTextarea").type);
}
</script>
</head>
<body>
<textarea id="myTextarea" cols="20">
在w3cschool布布教程你会找到你要学习的教程,包括基础教程HTML,高级教程 XML, SQL, ASP, 和 PHP。
</textarea>
<br>
<button type="button" onclick="displayResult()">Alert type</button>
</body>
</html>