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
相關用法
- HTML Input Submit formNoValidate用法及代碼示例
- HTML <input> formnovalidate屬性用法及代碼示例
- HTML Input Image value用法及代碼示例
- HTML Input Image alt用法及代碼示例
- HTML Input Image src用法及代碼示例
- HTML Input Image name用法及代碼示例
- HTML Input Image disabled用法及代碼示例
- HTML Input Image formEnctype用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML Input Image formMethod用法及代碼示例
- HTML Input Image formTarget用法及代碼示例
- HTML Input Image width用法及代碼示例
- HTML Input Image form用法及代碼示例
- HTML input image height用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Image formNoValidate Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。