Home  >  Article  >  Web Front-end  >  The html code text box restricts input. The text box turns gray. Restrict input into the text box_HTML/Xhtml_Web page production

The html code text box restricts input. The text box turns gray. Restrict input into the text box_HTML/Xhtml_Web page production

WBOY
WBOYOriginal
2016-05-16 16:37:181578browse

Method 1: Set the readonly attribute to true.

INPUT value=readonly readOnly

Method 2: Set the disabled attribute to true.

INPUT disabled value=disabled

Method 3: When the object is focused, blur it immediately so that it cannot gain focus.

INPUT onfocus=this.blur() value=onfocus=this.blur()

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