Difference between HTML ReadOnly and Enabled

Difference between HTML ReadOnly and Enabled
The TextBox with the ReadOnly attribute will be displayed as the following markup on the client: <input readonly = "readonly">

The TextBox with the Enabled attribute will be displayed as the following markup on the client: <input disabled="disabled">

Html server controls use a class derived from the HtmlControl base class (full class name System.Web.UI.HtmlControls), which only has the Disabled property.

According to W3C specifications: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.12


Inputs set to disabled will have the following restrictions:

<1> Can accept focus <2> Will be skipped when using the tab key <3> May not be successful Inputs set to readonly will have the following restrictions:

<1> Can accept focus but cannot be modified <2> Use the tab key to navigate <3> May be successful Only successful form elements have valid data, which means they can be submitted. Disabled and readonly text input boxes can only be modified by scripts

<<:  WeChat applet date and time component (year, month, day, hour, and minute)

>>:  How to operate MySql database with gorm

Recommend

Tutorial on how to install htop on CentOS 8

If you are looking to monitor your system interac...

Javascript to achieve drumming effect

This article shares the specific code of Javascri...

Recommended tips for web front-end engineers

Let's first talk about the value of web front...

Java example code to generate random characters

Sample code: import java.util.Random; import java...

JS, CSS and HTML to implement the registration page

A registration page template implemented with HTM...

MySQL 5.7.18 download and installation process detailed instructions

MySql Download 1. Open the official website and f...

JavaScript to achieve click image flip effect

I was recently working on a project about face co...

Linux yum package management method

Introduction yum (Yellow dog Updater, Modified) i...

Analysis of MySQL Aborted connection warning log

Preface: Sometimes, the session connected to MySQ...

JavaScript to achieve dynamic color change of table

This article shares the specific code for JavaScr...

Nginx compiled nginx - add new module

1. View existing modules /usr/local/nginx/sbin/ng...