Introduction to the use of select optgroup tag in html

Introduction to the use of select optgroup tag in html
Occasionally, I need to group select contents. In the past, I used program control. Today, I found that there is an optgroup attribute in select that can be used.

It has been tested and is suitable for browsers such as Firefox and IE. The only shortcoming found so far is that the title style after the group cannot be customized. For example: if you want to change the font properties, you can't use the normal font, but you can change the color and size. In IE, the default is italic and bold


Copy code
The code is as follows:

<select name="bid" id="brand_3">
<option value="">Please select a brand</option>
<optgroup label="A"></optgroup>
<option value="693" custom="693">A AC BMW</option>
<option value="62" custom="62">A Aston Martin</option>
<option value="1" custom="1">A Audi</option>
<optgroup label="B"></optgroup>
<option value="723" custom="723">B Babos</option>
<option value="44" custom="44">B Porsche</option>
<option value="582" custom="582">B Baojun</option>
<option value="20" custom="20">B BMW</option>
<option value="593" custom="593">B Beijing Auto</option>
<option value="643" custom="643">B BAIC Weiwang</option>
<option value="122" custom="122">B BAIC Manufacturing</option>
<option value="4" custom="4">B Mercedes-Benz</option>
</select>

<<:  Vue+openlayer5 method to get the coordinates of the current mouse slide

>>:  CSS achieves the effect of changing the color of the entire line when the mouse is placed on it

Recommend

How to remove carriage return characters from text in Linux

When the carriage return character ( Ctrl+M ) mak...

How to build sonarqube using docker

Table of contents 1. Install Docker 2. Install so...

How to optimize the slow Like fuzzy query in MySQL

Table of contents 1. Introduction: 2. The first i...

Detailed explanation of nginx's default_server definition and matching rules

The default_server directive of nginx can define ...

uniapp project optimization methods and suggestions

Table of contents 1. Encapsulate complex page dat...

VMware Workstation 14 Pro installation Ubuntu 16.04 tutorial

This article records the specific method of insta...

js to implement file upload style details

Table of contents 1. Overview 2. Parameters for c...

Implementation of mysql8.0.11 data directory migration

The default storage directory of mysql is /var/li...

MySQL fuzzy query statement collection

SQL fuzzy query statement The general fuzzy state...

What you need to understand about MySQL locks

1. Introduction MySQL locks can be divided into g...

VUE+Canvas implements the game of God of Wealth receiving ingots

Welcome to the previous canvas game series: 《VUE ...

A brief discussion on the specific use of viewport in mobile terminals

Table of contents 1. Basic Concepts 1.1 Two kinds...

Implementation of deploying war package project using Docker

To deploy war with Docker, you must use a contain...