In the process of making web pages, we often use forms. But sometimes we want the controls on the form to be unchangeable. For example, in a password modification web page, the text box that displays the user name should be unchangeable. There are two ways to disable in HTML, they are: 1. Add the readonly='readonly' attribute to the control tag 2. Add the disabled='disabled' attribute to the control tag Example: Copy code The code is as follows:<input type="text" value="read-only" readonly="readonly" /> <input type="text" value="Not available" disabled="disabled" /> Both controls in the example are not editable. But they also have some differences! From the literal meaning, we can know that a control with the readonly attribute is "read-only", while a control with the disabled attribute is "disabled". So what is the difference between them? The user cannot modify the value of a read-only control (a control that uses the readonly attribute) with the mouse or keyboard, but the programmer can modify it with JavaScript. When the form is submitted, the name and value of the control will be submitted to the server, which means it is visible to the server. Disabled controls (controls with the disabled attribute) cannot be modified by users with the mouse and keyboard, and are also invisible to the server. That is, their names and values are not submitted to the server when the form is submitted. Of course, programmers can also use JavaScript to modify their values. This is their difference. After knowing the difference, we should know when to use which method, and we must not be blind! |
<<: Syntax alias problem based on delete in mysql
>>: How to use CSS pseudo-elements to control the style of several consecutive elements
By right-clicking the source file, the following c...
In many cases, you need to process the background...
This morning I planned to use Wampserver to build...
11. Use JavaScript to create page effects 11.1 DO...
Table of contents 1. Introduction to teleport 1.1...
This article shares the specific code of js to ac...
<br />Generally speaking, the file organizat...
This article mainly introduces the sample code of...
You may sometimes need to create or delete symbol...
Table of contents 1. Preparation before developme...
//Default protocol /The use of the default protoc...
1. dhtmlxTree dHTMLxTree is a feature-rich Tree M...
Most of this article refers to other tutorials on...
Description: Set a timer to replace the content of...
Table of contents Preface text 1. Panel 2. Huaron...