Home  >  Article  >  Web Front-end  >  How to disable input in html/css

How to disable input in html/css

青灯夜游
青灯夜游Original
2021-04-28 14:45:376683browse

Methods to disable input: 1. Add the "readonly="readonly"" statement to input; 2. Add the "disabled="disabled"" statement to input; 3. Add "maxlength="0" to input "" statement, set the maximum input length to 0.

How to disable input in html/css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

Input method to prohibit input

1: readonly attribute

readonly specifies that the input field is Read-only and copyable, however, the user can use the Tab key to switch to the field, be selectable, receive focus, and select or copy its text.

<input type="text" value="哈哈哈" readonly="readonly">

2: disabled attribute

disabled The disabled input element can be copied and cannot receive focus. After setting, the color of the text will turn gray. Cannot be used with 10a0c4c6fe334f1dd2642c4aa224944a.

<input type="text" value="哈哈哈" disabled="disabled">

3: maxlength attribute

By controlling the max length of input to 0, the effect of prohibiting input is achieved

<input type="text" maxlength="0">

For more programming-related knowledge, please visit : Programming Video! !

The above is the detailed content of How to disable input in html/css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn