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" ><label for="JobQuery">Query and delete recruitment information</label> <input type="checkbox" name="Pages" value="Technology" id="Technology" checked><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
Table of contents 1. Scene loading 2. Find Node 1...
Switching files is a common operation in Linux. W...
Table of contents One-way data flow explanation V...
XHTML defines three document type declarations. T...
Table of contents Docker container data volume Us...
Caused by: java.sql.SQLException: Incorrect strin...
Friends who have used the Linux system must have ...
There are two special values that can be assign...
JSON (JavaScript Object Notation, JS Object Notat...
The following questions are all based on the Inno...
Problem description: For example, the content of ...
There are the following log files in MySQL: 1: re...
Table of contents 1. What is SVN 2. Svn server an...
Table of contents 1. Why do we need vue3? 2. Adva...
Table of contents 1. V8 Source 2. V8 Service Targ...