A solution to a bug in IE6 with jquery-multiselect

A solution to a bug in IE6 with jquery-multiselect

When using jquery-multiselect (a control that transforms a drop-down box into a multi-select control with checkboxes), it should normally be like this:

And it looks like this in IE6:

The first bug can be solved by referring to 'png images are not transparent in ie6'.

When debugging the second bug, I found that the height of the div with the background color applied was normal, not just a little bit. It looked like it was covered by the white background of the 'Select All Cancel' button inside, but in fact, they did not set the background. After setting the height of the div to a fixed value, it becomes normal.

The strangest bug is the third one. Only the first option has no background color when the mouse moves over it, but the following options have it when the mouse moves over them. After debugging, I confirmed that the first option did trigger the corresponding event, and the .hover... class for setting the background was added normally. There was no special processing for the first option in the js code, and no relevant reference was found on the Internet. The demo downloaded from the official website also has the same problem when running in IE6.

I tried changing the border color to a striking red in the .hover... class. I found that when I hovered the mouse over the first option, I could not see a red border. For the other options, only the left border was red, as shown below. So I guessed that it was because it thought the width was 0. I added a width constant to the .hover... class and it was normal after trying width: 100%;. It's all right once it's solved.

<<:  Details on using regular expressions in MySQL

>>:  Steps to deploy ingress-nginx on k8s

Recommend

Notes on MySQL case sensitivity

Table of contents MySQL case sensitivity is contr...

How to manage large file uploads and breakpoint resume based on js

Table of contents Preface Front-end structure Bac...

Vue makes div height draggable

This article shares the specific code of Vue to r...

How to optimize MySQL indexes

1. How MySQL uses indexes Indexes are used to qui...

How to use Nginx to prevent IP addresses from being maliciously resolved

Purpose of using Nginx Using Alibaba Cloud ECS cl...

Solve the Docker x509 insecure registry problem

After installing Docker, I encountered the x509 p...

The whole process of realizing website internationalization using Vite2 and Vue3

Table of contents Preface Install vue-i18n Config...

CSS to achieve scrolling image bar example code

On some websites, you can often see some pictures...

Modify the maximum number of mysql connections and configuration files in docker

1. Find the mysql image docker ps 2. Enter the mi...

MySQL Optimization: Cache Optimization (Continued)

There are caches everywhere inside MySQL. When I ...

A MySQL migration plan and practical record of pitfalls

Table of contents background Solution 1: Back up ...

JavaScript to achieve mouse tailing effect

Mouse effects require the use of setTimeout to ge...

In-depth understanding of the vertical-align property and baseline issues in CSS

vertical-align attribute is mainly used to change...