HTML DOM中的Input Email required属性用于设置或返回提交表单时是否应填写Input Email字段。此属性用于反映HTML必需属性。
用法:
- 它返回Input Email required属性。
emailObject.required
- 它用于设置“输入电子邮件”必填属性。
emailObject.required = true|false
属性值:
- true:它指定在提交表单之前必须填写电子邮件字段。
- false:它是默认值。它指定提交表单之前不得填写电子邮件字段。
返回值:它返回一个布尔值,该值表示在提交表单之前必须填写或不填写电子邮件字段。
范例1:本示例说明了如何返回Input Email required属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Email required Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksforGeeks</h1>
<h2>
DOM Input Email required Property
</h2>
E-mail:<input type="email" id="email"
name="myGeeks" required>
<br><br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG" style="font-size:20px;color:green;"></p>
<!-- Script to use Input Email required Property -->
<script>
function myGeeks() {
var em = document.getElementById("email").required;
document.getElementById("GFG").innerHTML = em;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
范例2:本示例说明了如何设置“输入电子邮件必填”属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Email required Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksforGeeks</h1>
<h2>
DOM Input Email required Property
</h2>
E-mail:<input type="email" id="email"
name="myGeeks" required>
<br><br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG" style="font-size:20px;color:green;"></p>
<!-- Script to set Input Email required Property -->
<script>
function myGeeks() {
var em = document.getElementById("email").required
= false;
document.getElementById("GFG").innerHTML = em;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:DOM输入电子邮件必需属性支持的浏览器如下:
- 谷歌浏览器
- Internet Explorer 10.0
- Firefox
- Opera
- Safari
相关用法
- HTML Input Email name用法及代码示例
- HTML Input Email value用法及代码示例
- HTML Input Email autofocus用法及代码示例
- HTML Input Email defaultValue用法及代码示例
- HTML Input Email readOnly用法及代码示例
- HTML Input Email type用法及代码示例
- HTML Input Email size用法及代码示例
- HTML Input Email maxLength用法及代码示例
- HTML Input Email Placeholder用法及代码示例
- HTML Input Email form用法及代码示例
- HTML Input Email disabled用法及代码示例
- HTML Input Email pattern用法及代码示例
- HTML Input Email multiple用法及代码示例
- HTML Input Email autocomplete用法及代码示例
- HTML Input URL required用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Email required Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。