当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。