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>
- 在单击按钮之前:
- 单击按钮后:
相关用法
- HTML <button> formnovalidate属性用法及代码示例
- HTML Input Image formNoValidate用法及代码示例
- HTML Input Submit formNoValidate用法及代码示例
- HTML Button value用法及代码示例
- HTML Button name用法及代码示例
- HTML Button formMethod用法及代码示例
- HTML Button formTarget用法及代码示例
- HTML Button formEnctype用法及代码示例
- HTML Button type用法及代码示例
- HTML Button disabled用法及代码示例
- HTML Button autofocus用法及代码示例
- HTML Button form用法及代码示例
- HTML Input Button name用法及代码示例
- HTML Button formAction用法及代码示例
- HTML Input Button value用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Button formNoValidate Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。