當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Textarea type屬性用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML DOM Textarea type Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。