HTML DOM中的“禁用输入电子邮件”属性用于设置或返回是否必须禁用“输入电子邮件”字段。禁用的复选框不可单击且无法使用。它是一个布尔属性,用于反映HTML Disabled属性。
用法:
- 它用于返回禁用的属性。
emailObject.disabled
- 用于设置禁用的属性。
emailObject.disabled = true|false
属性值:它包含以下列出的两个属性值:
- true:它定义禁用输入电子邮件字段。
- False:它具有默认值。它定义了输入电子邮件字段未禁用。
返回值:它返回一个布尔值,表示输入电子邮件字段是否已禁用。
范例1:本示例返回禁用输入电子邮件的属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Email disabled Property
</title>
</head>
<body style="text-align:center;">
<h1> GeeksforGeeks</h1>
<h2>DOM Input Email disabled Property</h2>
E-mail:<input type="email" id="email" disabled>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG" style="font-size:25px;color:green;"></p>
<!-- Script to access input element with
type email attribute -->
<script>
function myGeeks() {
var em = document.getElementById("email").disabled;
document.getElementById("GFG").innerHTML = em;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
范例2:本示例设置“禁用输入电子邮件”属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Email disabled Property
</title>
</head>
<body style="text-align:center;">
<h1> GeeksforGeeks</h1>
<h2>DOM Input Email disabled Property</h2>
E-mail:<input type="email" id="email" disabled>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG" style="font-size:25px;color:green;"></p>
<!-- Script to access input element with
type email attribute -->
<script>
function myGeeks() {
var em = document.getElementById("email").disabled =false;
document.getElementById("GFG").innerHTML = em;
}
</script>
</body>
</html>
输出:
Befpre单击按钮:
单击按钮后:
支持的浏览器:DOM输入禁用电子邮件的属性支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL disabled用法及代码示例
- HTML Input DatetimeLocal disabled用法及代码示例
- HTML Input Color disabled用法及代码示例
- HTML Input Number disabled用法及代码示例
- HTML Input Text disabled用法及代码示例
- HTML Input Datetime disabled用法及代码示例
- HTML Input Submit disabled用法及代码示例
- HTML Input Reset disabled用法及代码示例
- HTML Input Date disabled用法及代码示例
- HTML Input Month disabled用法及代码示例
- HTML Input Week disabled用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Password disabled用法及代码示例
- HTML Input Time disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Email disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。