DOM输入搜索readOnly属性用于设置或返回搜索字段是否应为只读。这意味着用户无法修改或更改特定元素中已经存在的内容(但是,用户可以对其进行制表,突出显示并从中复制文本),而JavaScript可用于更改只读值,并使输入字段可编辑。
用法:
- 它用于返回readOnly属性
searchObject.readOnly
- 它用于设置readOnly属性。
searchObject.readOnly = true|false
属性值:
- true:它定义搜索字段为只读。
- false:它定义搜索字段不是只读的。
返回值:它返回一个布尔值,表示搜索字段是只读的。
示例1:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search readOnly Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search readOnly Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
placeholder="Type to search.."
readOnly>
</form>
<br>
<br>
<button ondblclick="Access()">
click here
</button>
<p id="check"
style="font-size:24px;
color:green;">
</p>
<script>
function Access() {
// type="search"
var s = document.getElementById(
"test").readOnly;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:此示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<title>
Input Search readOnly Property
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Input Search readOnly Property</h2>
<form id="myGeeks">
<input type="Search"
id="test"
placeholder="Type to search.."
readOnly>
</form>
<br>
<br>
<button ondblclick="Access()">
click here
</button>
<p id="check"
style="font-size:24px;
color:green;">
</p>
<script>
function Access() {
// type="search"
var s = document.getElementById(
"test").readOnly = false;
document.getElementById(
"check").innerHTML = s;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入搜索readOnly属性支持的浏览器:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL readOnly用法及代码示例
- HTML Input Email readOnly用法及代码示例
- HTML Input Time readOnly用法及代码示例
- HTML Input Week readOnly用法及代码示例
- HTML Input Datetime readOnly用法及代码示例
- HTML Input Number readOnly用法及代码示例
- HTML Input Month readOnly用法及代码示例
- HTML Input Password readOnly用法及代码示例
- HTML Input Date readOnly用法及代码示例
- HTML Input Text readOnly用法及代码示例
- HTML Input DatetimeLocal readOnly用法及代码示例
- HTML Input Search name用法及代码示例
- HTML Input Search value用法及代码示例
- HTML Input Search size用法及代码示例
- HTML Input Search required用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Search readOnly Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。