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


HTML Input Image formNoValidate用法及代碼示例


HTML DOM輸入圖像formNoValidate屬性用於設置或返回用戶提交表單時是否驗證表單數據。此屬性用於反映HTML formnovalidate屬性。

用法:

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

屬性值:


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

返回值:它返回一個字符串值,該字符串值表示在提交表單時是否應驗證表單數據。

範例1:本示例說明了如何返回Input Image formNoValidate屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Image formNoValidate  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
    <h2>DOM Input Image formNoValidate</h2>  
    <button onclick="my_geek()">  
        <input id="myImage"
            type="image" 
            formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
            alt="Submit"
            width="48" 
            height="48"  formNoValidate>  
    </button>  
      
    <h2 id="Geek_h" style="color:green;">  
  
        </h2>  
    <script>  
        function my_geek() {  
              
            // Return target, alt and height.  
            var txt = document.getElementById(  
            "myImage").formNoValidate; 
            document.getElementById(  
            "Geek_h").innerHTML = txt;  
        }  
    </script>  
</body>  
  
</html> 

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2:本示例說明了如何設置formNoValidate屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Image formNoValidate  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
    <h2>DOM Input Image formNoValidate</h2>  
    <button onclick="my_geek()">  
        <input id="myImage"
            type="image" 
            formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
            alt="Submit"
            width="48" 
            height="48"  formNoValidate>  
    </button>  
      
    <h2 id="Geek_h" style="color:green;">  
  
        </h2>  
    <script>  
        function my_geek() {  
              
            // Return target, alt and height.  
            var txt = document.getElementById(  
            "myImage").formNoValidate = false; 
            document.getElementById(  
            "Geek_h").innerHTML = txt;  
        }  
    </script>  
</body>  
  
</html> 

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Input Image formNoValidate屬性支持的瀏覽器:

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


相關用法


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