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


HTML DOM Input Submit用法及代碼示例


HTML DOM中的Input Submit對象代表類型為“submit”的HTML <input>元素。

用法:

  • 它創建一個輸入提交對象。
    document.createElement("INPUT")
  • 它用於訪問輸入提交對象。
    document.getElementById("id")

屬性值:

  • autofocus:它設置或返回在頁麵加載時是否應自動獲得焦點的提交按鈕。
  • defaultValue:它設置或返回提交按鈕的默認值。
  • disabled:它設置或返回是否禁用提交按鈕。
  • form:它返回對包含提交按鈕的表單的引用。
  • formAction:它設置或返回提交按鈕的formAction屬性的值。
  • formEnctype:它設置或返回提交按鈕的formEnctype屬性的值。
  • formMethod:它設置或返回提交按鈕的formMethod屬性的值。
  • formNoValidate:它設置或返回提交按鈕是否允許form-data被驗證。
  • formTarget:它設置或返回提交按鈕的formTarget屬性的值。
  • name:它設置或返回提交按鈕的名稱屬性的值。
  • type:它返回提交按鈕的表單元素類型。
  • value:它設置或返回提交按鈕的value屬性的值。

返回值:它返回與執行的輸入提交動作相對應的對象。

範例1:本示例創建一個輸入提交對象



<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Submit Object 
    </title> 
</head> 
  
<body> 
      
    <h2> 
        HTML DOM Input Submit Object 
    </h2> 
      
    <p> 
        Click on the button to create 
        submit button 
    </p> 
      
    <button onclick = "myGeeks()"> 
        Click Here! 
    </button> 
      
    <!-- Script to create submit button -->
    <script> 
        function myGeeks() { 
            var btn = document.createElement("INPUT"); 
            btn.setAttribute("type", "submit"); 
            btn.value = ("Submit @ geeksforgeeks"); 
            document.body.appendChild(btn); 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:本示例描述了輸入提交對象的訪問

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Submit Object 
    </title> 
</head> 
  
<body> 
      
    <h2> 
        HTML DOM Input Submit Object 
    </h2> 
      
    <p> 
        Click on the button to create 
        submit button 
    </p> 
      
    <input type = "submit" id = "Geeks"
            value = "Submit @ geeksforgeeks"> 
      
    <button onclick = "myGeeks()"> 
        Click Here! 
    </button> 
      
    <p id = "GFG"></p> 
      
    <!-- Script to create submit button -->
    <script> 
        function myGeeks() { 
            var btn = document.getElementById("Geeks").value; 
            document.getElementById("GFG").innerHTML = btn; 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:DOM輸入提交對象支持的瀏覽器如下:

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




相關用法


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