Detailed explanation of HTML's <input> tag and how to disable it

Detailed explanation of HTML's <input> tag and how to disable it

Definition and Usage
The <input> tag is used to collect user information.
Depending on the value of the type attribute, the input field can have many forms. Input fields can be text fields, check boxes, masked text controls, radio buttons, buttons, and so on.
Differences between HTML and XHTML
In HTML, the <input> tag has no closing tag.
In XHTML, <input> tags must be properly closed.
Examples
A simple HTML form with two text input boxes and a submit button:

XML/HTML CodeCopy content to clipboard
  1. < form   action = "form_action.asp"   method = "get" >   
  2. First name: < input   type = "text"   name = "fname"   />   
  3. Last name: < input   type = "text"   name = "lname"   />   
  4.    < input   type = "submit"   value = "Submit"   />   
  5. </ form >   

The disabled attribute specifies that the input element should be disabled.
A disabled input element is neither usable nor clickable. The disabled property can be set until some other condition is met (such as a checkbox being selected, etc.). Then, you need to use JavaScript to remove the disabled value and switch the value of the input element to enabled.
201585180424922.jpg (205×270)

The following three ways can disable input

XML/HTML CodeCopy content to clipboard
  1. < input   type = "text"   disabled = "disabled"   value = "disabled"   />   
  2. < input   type = "text"   disabled = "disabled"   value = "disabled"   />   
  3. < input   type = "text"   disabled = "disabled"   value = "disabled"   />   

Disabled input is grayed out by default and can be styled using CSS. Note: IE9 and below cannot change the font color
1. Use CSS3 :disabled pseudo-element definition

CSS CodeCopy content to clipboard
  1. //Chrome Firefox Opera Safari
  2. input:disabled{
  3.      border : 1px   solid   #DDD ;
  4.      background-color : #F5F5F5 ;
  5.      color : #ACA899 ;
  6. }

2. Define using attribute selectors

CSS CodeCopy content to clipboard
  1. //IE6 failed
  2. input[disabled]{
  3.      border : 1px   solid   #DDD ;
  4.      background-color : #F5F5F5 ;
  5.      color : #ACA899 ;
  6. }

3. Use class to define and add a class to the input to be disabled

CSS CodeCopy content to clipboard
  1. input.disabled{
  2.      border : 1px   solid   #DDD ;
  3.      background-color : #F5F5F5 ;
  4.      color : #ACA899 ;
  5. }

Final result:

CSS CodeCopy content to clipboard
  1. //Chrome Firefox Opera Safari IE9+
  2. input:disabled{
  3.      border : 1px   solid   #DDD ;
  4.      background-color : #F5F5F5 ;
  5.      color : #ACA899 ;
  6. }
  7. //IE8-
  8. input[disabled]{
  9.      border : 1px   solid   #DDD ;
  10.      background-color : #F5F5F5 ;
  11.      color : #ACA899 ;
  12. }
  13. //IE6 Using Javascript to add CSS class "disabled"   
  14. * html input.disabled{
  15.      border : 1px   solid   #DDD ;
  16.      background-color : #F5F5F5 ;
  17.      color : #ACA899 ;
  18. }

Note: IE8 bug
Since IE8 does not recognize :disabled, the input[disabled] and input:disabled styles are invalid. You can consider writing them separately or using input[disabled] directly. ; IE9 and below cannot change the font color.

Demo

<<:  How to use MySQL binlog to restore accidentally deleted databases

>>:  Floating menu, can achieve up and down scrolling effect

Recommend

JavaScript implementation of drop-down list

This article example shares the specific code of ...

Explanation of MySQL's horizontal and vertical table partitioning

In my previous article, I said that the optimizat...

In-depth understanding of umask in new linux file permission settings

Preface The origin is a question 1: If your umask...

HTML table only displays the outer border of the table

I would like to ask a question. In Dreamweaver, I...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

Introduction to SSL certificate installation and deployment steps under Nginx

Table of contents Problem description: Installati...

What to do if you forget the initial password when installing MySQL on Mac

Forgetting the password is a headache. What shoul...

A must-read career plan for web design practitioners

Original article, please indicate the author and ...

Things about installing Homebrew on Mac

Recently, Xiao Ming just bought a new Mac and wan...

Remote development with VSCode and SSH

0. Why do we need remote development? When develo...

How to use anti-shake and throttling in Vue

Table of contents Preface concept Stabilization d...

Summary of some common writing methods that cause MySQL index failure

Preface Recently, I have been busy dealing with s...

Linux firewall iptables detailed introduction, configuration method and case

1.1 Introduction to iptables firewall Netfilter/I...

The difference between shtml and html

Shtml and asp are similar. In files named shtml, s...