DOM输入URL禁用属性用于设置或返回是否必须禁用输入URL字段。禁用的密码字段为un-clickable,并且无法使用。它是一个布尔属性,用于反映HTML Disabled属性。默认情况下,在所有浏览器中通常以灰色显示。
用法:
- 它返回禁用的属性。
urlObject.disabled
- 用于设置禁用的属性。
urlObject.disabled = true|false
属性值:
- true:它定义了输入URL字段被禁用。
- False:它具有默认值。它定义了输入URL字段未禁用。
返回值:它返回一个布尔值,该布尔值表示是否禁用了输入URL字段。
示例1:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input URL disabled Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input URL Disabled Property
</h2>
<label for="uname"
style="color:green">
</label>
<form id="geeks">
<input type="url"
id="gfg"
placeholder="Enter URL"
size="20"
pattern="https?://.+"
title="Include http://"
maxlength="20"
disabled>
</form>
<br>
<br>
<button type="button"
onclick="geeks()">
Click
</button>
<p id="GFG"
style="color:green;
font-size:25px;">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").disabled;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input URL disabled Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input URL Disabled Property
</h2>
<label for="uname"
style="color:green">
</label>
<form id="geeks">
<input type="url"
id="gfg"
placeholder="Enter URL"
size="20"
pattern="https?://.+"
title="Include http://"
maxlength="20"
disabled>
</form>
<br>
<br>
<button type="button"
onclick="geeks()">
Click
</button>
<p id="GFG"
style="color:green;
font-size:25px;">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").disabled = "false";
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:DOM输入URL禁用属性支持的浏览器如下:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input Range disabled用法及代码示例
- HTML Input Number disabled用法及代码示例
- HTML Input Search disabled用法及代码示例
- HTML Input Month disabled用法及代码示例
- HTML Input Datetime disabled用法及代码示例
- HTML Input Date disabled用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input DatetimeLocal disabled用法及代码示例
- HTML Input Checkbox disabled用法及代码示例
- HTML Input Email disabled用法及代码示例
- HTML Input Password disabled用法及代码示例
- HTML Input Reset disabled用法及代码示例
- HTML Input Submit disabled用法及代码示例
- HTML Input Text disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input URL disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。