Introduction to the use of the indeterminate property of the checkbox

Introduction to the use of the indeterminate property of the checkbox
When we use the folder properties dialog box in Windows XP, we will find that the Read-only and Hidden options in the folder's Attributes category are sometimes not completely checked or unchecked, but often a state in which they are checked but the background is gray. In fact, this uncertain CheckBox state can also be expressed on the Web.

In a web page, we can use <input id="chkb" type="CheckBox"> to get a CheckBox control. The most common form of this control is checked (with a checkmark) or unchecked. We can easily switch between these two states by clicking the mouse, and we can also use scripting languages ​​to change their states, such as using JavaScript scripts:

Copy code
The code is as follows:

chkb.checked = true; or chkb.checked = false;

The following figure shows the three states that a CheckBox can display:

The first and third ones are very common, and they can be set using HTML, that is, we can determine the initial state of the CheckBox through an attribute of an HTML element called checked. Although the Indeterminate state we are talking about here has been supported since IE4.0, there is no HTML element attribute to set its value, and the Indeterminate state can only be set using scripts.

For example, using JavaScript scripts (indeterminate is false by default):

Copy code
The code is as follows:

chkb.indeterminate = true; or chkb.indeterminate = false;


Note : indeterminate of CheckBox is an independent property and has nothing to do with the values ​​of checked and status of CheckBox. That is to say, it only affects the appearance of CheckBox. We can still use scripts to read the values ​​of checked and status normally.

<<:  What kinds of MYSQL connection queries do you know?

>>:  Detailed explanation of the hierarchical relationship problem caused by CSS positioning

Recommend

Analysis of the Principle and Method of Implementing Linux Disk Partition

remember: IDE disk: the first disk is hda, the se...

Nginx signal control

Introduction to Nginx Nginx is a high-performance...

Two query methods when the MySQL query field type is json

The table structure is as follows: id varchar(32)...

Installation and configuration method of vue-route routing management

introduce Vue Router is the official routing mana...

Detailed tutorial on installing MySQL 8 in CentOS 7

Prepare Environmental information for this articl...

Summary of important mysql log files

Author: Ding Yi Source: https://chengxuzhixin.com...

Example of how to implement local fuzzy search function in front-end JavaScript

Table of contents 1. Project Prospects 2. Knowled...

How to use the Linux nl command

1. Command Introduction nl (Number of Lines) adds...

Implementation of JavaScript downloading linked images and uploading them

Since we are going to upload pictures, the first ...

Detailed explanation of nodejs built-in modules

Table of contents Overview 1. Path module 2. Unti...

Vue's new partner TypeScript quick start practice record

Table of contents 1. Build using the official sca...

Docker deployment of Kafka and Spring Kafka implementation

This article mainly introduces the deployment of ...

JavaScript implements cool mouse tailing effects

After watching this, I guarantee that you have ha...

A brief discussion on the issue of element dragging and sorting in table

Recently, when using element table, I often encou...