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


HTML DOM Input Text用法及代碼示例


HTML DOM中的Input Text Object用於表示具有type =“ text”屬性的HTML <input>元素。可以使用getElementById()方法訪問類型=“ text”的<input>元素。

用法:

  • 它用於訪問輸入文本對象。
    document.getElementById("id");
  • 它用於創建輸入元素。
    document.createElement("input");

輸入文本對象屬性:

屬性 描述
type 它用於將表單元素的類型返回到文本字段。
value 此屬性用於設置或返回文本字段的value屬性的值。
autocomplete 此屬性用於設置或返回文本字段的自動完成屬性的值。
autofocus 此屬性用於設置或返回在頁麵加載時文本字段是否應自動獲得焦點。
defaultValue 此屬性用於設置或返回文本字段的默認值。
disabled 此屬性用於設置或返回是否禁用文本字段。
form 此屬性用於返回對包含文本字段的表單的引用。
list 此屬性用於返回對包含文本字段的數據列表的引用。
maxLength 此屬性用於設置或返回文本字段的maxlength屬性值。
name 此屬性用於設置或返回文本字段的name屬性的值。
pattern 此屬性用於設置或返回文本字段的pattern屬性的值。
placeholder 此屬性用於設置或返回文本字段的占位符屬性的值。
readOnly 此屬性用於設置或返回文本字段是否為隻讀。
required 此屬性用於設置或返回在提交表單之前是否必須填寫文本字段。
size 此屬性用於設置或返回文本字段的size屬性的值。

範例1:本示例使用getElementById()方法訪問具有type =“ text”屬性的<input>元素。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Text Object 
    </title> 
</head>    
  
<body>  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Text Object</h2> 
  
    <input type="text" id="text_id" value="Hello Geeks!"> 
      
    <p>Click on button to display the text field</p> 
      
    <button onclick="myGeeks()">Click Here!</button> 
      
    <p id="GFG"></p> 
      
    <!-- script to access text field -->
    <script> 
        function myGeeks() { 
            var txt = document.getElementById("text_id").value; 
            document.getElementById("GFG").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:



範例2:本示例使用document.createElement()方法創建具有type =“ text”屬性的<input>元素。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Text Object 
    </title> 
</head>    
  
<body>  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Text Object</h2> 
  
    <p>Click the button to create Text Field</p> 
      
    <button onclick = "myGeeks()"> 
        Click Here! 
    </button> 
      
    <!-- script to create th element -->
    <script> 
        function myGeeks() { 
              
            /* Create an input element */ 
            var x = document.createElement("INPUT"); 
              
            /* Set the type attribute */ 
            x.setAttribute("type", "text"); 
              
            /* Set the value to the attribute */ 
            x.setAttribute("value", "Hello Geeks!"); 
              
            /* Append node to the body */ 
            document.body.appendChild(x); 
        } 
    </script> 
  
</body> 
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:




相關用法


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