HTML DOM Input Search readOnly 属性
HTML DOM Input Search readOnly 属性用于设置或返回输入搜索字段是否只读。readOnly 属性使元素不可编辑,但仍可以通过 tab 键或单击对其进行焦点化。如果只读元素中有默认值,则会在提交时将其发送至服务器。
语法
以下是语法 −
设置 readOnly 属性 −
searchObject.readOnly = true|false
这里,true 表示搜索字段只读,而 false 则表示可读写。readOnly 属性默认设置为 false。
示例
让我们看一个 Search readOnly 属性示例 −
<!DOCTYPE html> <html> <body> <h1>Search readOnly property</h1> <form> FRUITS: <input type="search" id="SEARCH1" name="fruits"> </form> <p>Change the readOnly property of the above field by clicking the below button</p> <button onclick="changeRead()">CHANGE</button> <script> function changeRead() { document.getElementById("PASS1").readOnly = true; } </script> </body> </html>
输出
这将产生以下输出 −
点击 CHANGE 按钮 −
广告