The functions and differences between disabled and readonly

The functions and differences between disabled and readonly
1: readonly is to lock this control so that it cannot be modified on the interface (but it can be modified through JavaScript).

2: disabled and readonly have the same point that they can lock the control so that users cannot change its value, but disabled is more thorough. It prevents you from using it at all, including changing its background color (if you don't believe it, try to modify a disabled input text box and you will find that your efforts are in vain). If it is a checkbox, it cannot be selected.

3: All controls have a disabled attribute, but not necessarily a readonly attribute. Such as select drop-down box

<<:  Sample code for implementing multi-application deployment using tomcat+nginx

>>:  A Deeper Look at the Differences Between Link and @import

Recommend

JavaScript to achieve a simple carousel effect

What is a carousel? Carousel: In a module or wind...

Analysis of Linux boot system methods

This article describes how to boot the Linux syst...

Ten important questions for learning the basics of Javascript

Table of contents 1. What is Javascript? 2. What ...

Vue el-date-picker dynamic limit time range case detailed explanation

There are two situations 1. Start time and end ti...

Detailed explanation of the implementation of shared modules in Angular projects

Table of contents 1. Shared CommonModule 2. Share...

js to achieve the effect of light switch

This article example shares the specific code of ...

Analysis of CocosCreator's new resource management system

Table of contents 1. Resources and Construction 1...

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

In-depth explanation of the global status of WeChat applet

Preface In WeChat applet, you can use globalData ...