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


HTML Button formNoValidate用法及代碼示例


HTML DOM中的Button formNoValidate屬性用於設置或返回提交表單時是否應驗證表單數據。此屬性用於反映HTML formnovalidate屬性。

用法:

  • 它返回formNoValidate屬性。
    buttonObject.formNoValidate
  • 它用於設置formNoValidate屬性。
    button.formNoValidate = true|false

屬性值:


  • true:它指定不應驗證表單數據。
  • false:它是默認值。它指定應驗證的表單數據。

返回值:如果不應驗證表單數據,則返回布爾值true,否則返回false。

範例1:本示例說明了HTML DOM Button的formNoValidate屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM  Button formNoValidate Property  
    </title>  
</head>  
  
<body style="text-align:center;">  
    <h1>  
        GeeksForGeeks  
    </h1>  
      
    <h2>  
        HTML DOM Button formNoValidate Property  
    </h2>  
      
    <form action="#" method="get" target="_self">  
        <button type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" Formnovalidate>  
    Submit </button> 
    </form>  
      
    <p>  
        click on below button to return the Property  
    </p>  
      
    <button onclick = "myGeeks()">  
        Click Here!  
    </button>  
      
    <p id = "GFG"style="font-size:25px;"></p>  
      
    <!-- Script to return submit formnovalidate Property -->
    <script>  
        function myGeeks() {  
            var btn = document.getElementById("Geeks").formNoValidate;  
            document.getElementById("GFG").innerHTML = btn;  
        }  
    </script>  
</body>  
  
</html>                      
  
  • 在單擊按鈕之前:
  • 單擊按鈕後:

範例2:本示例說明如何設置Button的formNoValidate屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM  Button formNoValidate Property  
    </title>  
</head>  
  
<body style="text-align:center;">  
    <h1>  
        GeeksForGeeks  
    </h1>  
      
    <h2>  
        HTML DOM Button formNoValidate Property  
    </h2>  
      
    <form action="#" method="get" target="_self">  
        <button type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks"
            formTarget="_blank" Formnovalidate>  
    Submit </button> 
    </form>  
      
    <p>  
        click on below button to return the Property  
    </p>  
      
    <button onclick = "myGeeks()">  
        Click Here!  
    </button>  
      
    <p id = "GFG"style="font-size:25px;"></p>  
      
    <!-- Script to return submit formnovalidate Property -->
    <script>  
        function myGeeks() {  
            var btn = document.getElementById("Geeks").formNoValidate 
                     = "false";  
  
            document.getElementById("GFG").innerHTML = btn;  
        }  
    </script>  
</body>  
  
</html>                     
  • 在單擊按鈕之前:
  • 單擊按鈕後:


相關用法


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