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

WBOY
Release: 2016-05-16 16:37:18
Original
1577 people have browsed it

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()

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template