


Web development: Set the read-only effect of check boxes
In web development, sometimes it is necessary to display some check boxes (checkboxes) to indicate that this place can be checked. , but sometimes you just want to inform the user that "this place can be checked" and don't want the user to check here (such as on the information display page). In this case, you need to set the check box to read-only. Effect.
When it comes to read-only, it is easy to think of using the readonly attribute, but for check boxes, this attribute is different from the expected effect. The reason is that the readonly attribute is associated with the value attribute of the page element (such as textbox, the text content of the input box cannot be modified when readonly is set), and checking/unchecking the checkbox does not change its value attribute, only a checked state. So for the checkbox, if readonly is set, it can still be checked/cancelled. The effect is as follows:
<input type="text" name="realname" value="只读的文本内容..." readonly="readonly" /> <input type="checkbox" name="optiona" readonly="readonly" />option a<input type="checkbox" name="optionb" readonly="readonly" />option b<input type="checkbox" name="optionc" readonly="readonly" />option c
option a
option b
option c
Similar to readonly, there is also a disabled attribute, which is used to set The page element is unavailable, that is, no interactive operations can be performed (including the value attribute cannot be modified, the checked status cannot be modified, etc.). The effect is as follows:
<input type="text" name="realname" value="输入的文本内容..." disabled="disabled" /> <input type="checkbox" name="optiona" disabled="disabled" />option a<input type="checkbox" name="optionb" disabled="disabled" />option b<input type="checkbox" name="optionc" disabled="disabled" />option c
option a
option b
option c
From the above we can see that neither readonly nor disabled achieves our desired effect. Since it cannot be implemented directly, we can work around it and simulate it. The code is as follows:
<input type="checkbox" name="chkAllowed" onclick="return false;" checked="checked" />
Related links

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6
Visual web development tools
