Home Web Front-end HTML Tutorial How to set input to read-only through disabled and readonly

How to set input to read-only through disabled and readonly

Feb 03, 2018 am 10:13 AM
input readonly

This time I will show you how to set the input to read-only effect through disabled and readonly, and set the input to read-only effect through disabled and readonly. What are the precautions?, the following is a practical case, Let’s take a look.

There are two ways to achieve the read-only effect of input: disabled and readonly.

Of course the two effects can only be read but not edited, but they are very different.

Disabled indicates that the input is invalid and its value will not be passed to any program, such as asp, php, etc.
Readonly only cannot be edited and does not affect the transfer of its value.

Disabled使用:<INPUT type="text" name="username" value="james" disabled> 
Readonly使用:<INPUT type="text" name="partNumber" value="1500" readonly>
Copy after login

I believe you have mastered the methods after reading these cases. For more exciting information, please pay attention to other related articles on the php Chinese website!

Related reading:

How to use the href attribute and onclick event of a tag

How to use marquee to implement text in html Scroll left and right

How to add styles to images for radio and multi-select buttons

Button has several Click response methods

There are several ways to disable form controls in HTML

The above is the detailed content of How to set input to read-only through disabled and readonly. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the readonly feature and how to use the function in Vue3 What is the readonly feature and how to use the function in Vue3 May 10, 2023 pm 10:04 PM

Detailed explanation of the readonly feature in Vue3 readonly is a new feature provided in Vue3, which is used to turn a responsive object into a read-only object. Using readonly can ensure that an object can only be read and cannot be modified, thus improving the stability and security of the application. In Vue3, you can use the readonly function to convert an object to a read-only object, for example: import{readonly}from'vue'conststate=readonly({count:0}) In the above code, the state object is converted to read-only object, which means state.count

How to encapsulate input components and unified form data in vue3 How to encapsulate input components and unified form data in vue3 May 12, 2023 pm 03:58 PM

Preparation Use vuecreateexample to create a project. The parameters are roughly as follows: use native input. Native input is mainly value and change. The data needs to be synchronized when changing. App.tsx is as follows: import{ref}from'vue';exportdefault{setup(){//username is the data constusername=ref('Zhang San');//When the input box changes, synchronize the data constonInput=;return( )=>({

How to implement laravel input hidden field How to implement laravel input hidden field Dec 12, 2022 am 10:07 AM

How to implement the laravel input hidden field: 1. Find and open the Blade template file; 2. Use the method_field method in the Blade template to create a hidden field. The creation syntax is "{{ method_field('DELETE') }}".

What to do if there is no cursor when clicking on the input box What to do if there is no cursor when clicking on the input box Nov 24, 2023 am 09:44 AM

Solutions for clicking the input box without a cursor: 1. Confirm the focus of the input box; 2. Clear the browser cache; 3. Update the browser; 4. Use JavaScript; 5. Check the hardware device; 6. Check the input box properties; 7. Debug JavaScript code; 8. Check other elements of the page; 9. Consider browser compatibility.

Detailed explanation of input box binding events in Vue documents Detailed explanation of input box binding events in Vue documents Jun 21, 2023 am 08:12 AM

Vue.js is a lightweight JavaScript framework that is easy to use, efficient and flexible. It is one of the most popular front-end frameworks currently. In Vue.js, input box binding events are a very common requirement. This article will introduce the input box binding events in the Vue document in detail. 1. Basic concepts In Vue.js, the input box binding event refers to binding the value of the input box to the data object of the Vue instance, thereby achieving two-way binding of input and response. In Vue.j

How to use the input box carriage return event and verification function in the Vue document How to use the input box carriage return event and verification function in the Vue document Jun 20, 2023 am 09:13 AM

Vue is a popular JavaScript front-end framework with a responsive data binding and component system at its core. In Vue applications, the input box is one of the most commonly used UI elements. When the user enters text, we hope to listen for the carriage return event and validate the input before submitting. This article will introduce the input box enter event and verification function usage in the Vue document. 1. The carriage return event of the input box in Vue. Monitoring the carriage return event of the input box in Vue is very simple.

Get input from the user using Python's input() function Get input from the user using Python's input() function Aug 22, 2023 am 11:21 AM

Title: Using Python's input() function to get input from the user When writing a program, you often need to get input from the user. Python provides a built-in function input() that can be used to obtain and receive user input. This article will introduce how to use the input() function and some common application scenarios. The input() function is very simple to use. It accepts an optional prompt message as a parameter and waits for user input. After the user inputs, the input() function will return a

What is the input method in laravel What is the input method in laravel Jul 11, 2023 am 09:43 AM

The input method in laravel is a very practical tool that can easily obtain the parameters in the HTTP request. Whether it is GET, POST or other HTTP request methods, it can be easily processed. In laravel development, input validation and parameter processing are very common tasks, and the input method can greatly simplify these processes and improve development efficiency.

See all articles