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


HTML DOM Textarea用法及代碼示例


HTML DOM中的Textarea對象用於表示HTML <textarea>元素。可以使用getElementById()方法訪問textarea元素。

用法:

document.getElementById("ID"); 

將ID分配給<textarea>元素的位置。

屬性值:

  • autofocus:它用於設置或返回頁麵加載時元素是否應獲得焦點。
  • cols:它用於設置或返回textarea元素的此cols屬性的值。
  • defaultvalue:它用於設置或返回textarea元素的默認值。
  • form:它用於返回包含textarea字段的表單的引用。
  • maxLength:它用於設置或返回textarea字段的maxattribute值。
  • name:它用於設置或返回textarea字段的name屬性。
  • placeholder:它用於設置或返回textarea字段的占位符屬性的值。
  • readOnly:它用於返回textarea字段的readonly屬性的值。
  • required:它用於設置或返回在提交表單之前是否必須填寫輸入元素。
  • type:行:用於設置或返回textareafield的type屬性的值
  • value:它用於設置或返回textarea字段的內容。
  • wrap:它用於返回textarea字段的wrap屬性的值。

方法:



  • select():它用於選擇textarea字段中存在的所有全部內容。

範例1:本示例描述了用於訪問<textare>元素的getElementById()方法。

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            HTML DOM Textarea Object 
        </title>  
    </head>  
      
    <body style = "text-align:center"> 
               
        <h1 style = "color:green;"> 
            GeeksforGeeks 
        </h1>  
          
        <h2>DOM Textarea Object</h2>  
  
        <!--A disabled textarea-->
        <textarea id = "myGeeks">  
            GeeksForGeeks.A computer science portal for Geeks. 
        </textarea>  
          
        <br> 
          
        <button onclick = "Geeks()"> 
            Submit 
        </button> 
          
        <p id = "sudo"></p> 
  
        <script> 
            function Geeks() { 
                var x = document.getElementById("myGeeks").value; 
                document.getElementById("sudo").innerHTML = x; 
            } 
        </script> 
    </body>  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:可以使用document.createElement方法創建Textarea對象。

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            HTML DOM Textarea Object 
        </title>  
    </head> 
      
    <body style = "text-align:center">      
      
        <h1 style = "color:green;"> 
            GeeksforGeeks 
        </h1>  
          
        <h2>DOM Textarea Object</h2>  
          
        <button onclick = "Geeks()"> 
            Submit 
        </button> 
          
        <!-- script to create textarea -->
        <script> 
            function Geeks() { 
                  
                // textarea tag is created  
                var g = document.createElement("TEXTAREA"); 
                  
                var f = document.createTextNode( 
                "GeeksForGeeks.A computer science portal for Geeks."); 
                  
                g.appendChild(f); 
                document.body.appendChild(g); 
            } 
        </script> 
    </body>  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Textarea Object支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


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