Use label tag to select the radio button by clicking the text

Use label tag to select the radio button by clicking the text
The <label> tag defines a label (tag) for an input element. The label element does not present any special effect to the user. However, it improves usability for mouse users. This control is triggered if you click on the text within the label element. That is, when the user selects the tag, the browser automatically shifts the focus to the form control associated with the tag. The for attribute of the <label> tag should be the same as the id attribute of the associated element

Example 1:

Copy code
The code is as follows:

<label for="man">
<input type="radio" value="男" name="man" id="man"/>
male
</label>
<label for="man2">
<input type="radio" value="女" name="man" id="man2"/>
female
</label>

Example 2:

Copy code
The code is as follows:

<input type="checkbox" name="Pages" value="Job" id="Job" ><label for="Job">Add and edit job information</label>

<input type="checkbox" name="Pages" value="JobQuery" id="JobQuery" &gt;<label for="JobQuery">Query and delete recruitment information</label>

<input type="checkbox" name="Pages" value="Technology" id="Technology" checked&gt;<label for="Technology">Add or modify technology items</label>

<<:  Sample code for using CSS to write a textured gradient background image

>>:  MYSQL METADATA LOCK (MDL LOCK) theory and lock type test

Recommend

Organize the common knowledge points of CocosCreator

Table of contents 1. Scene loading 2. Find Node 1...

Linux directory switching implementation code example

Switching files is a common operation in Linux. W...

XHTML three document type declarations

XHTML defines three document type declarations. T...

Introduction to container data volumes in Docker

Table of contents Docker container data volume Us...

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...

A colorful cat under Linux

Friends who have used the Linux system must have ...

Best way to replace the key in json object

JSON (JavaScript Object Notation, JS Object Notat...

Summary of some small issues about MySQL auto-increment ID

The following questions are all based on the Inno...

Copy the contents of one file to the end of another file in linux

Problem description: For example, the content of ...

Summary of 7 types of logs in MySQL

There are the following log files in MySQL: 1: re...

SVN installation and basic operation (graphic tutorial)

Table of contents 1. What is SVN 2. Svn server an...

Summary of the advantages of Vue3 vs. Vue2

Table of contents 1. Why do we need vue3? 2. Adva...

Detailed explanation of the execution process of JavaScript engine V8

Table of contents 1. V8 Source 2. V8 Service Targ...