Using an image as a label, the for attribute does not work in IE

Using an image as a label, the for attribute does not work in IE
For example:

Copy code
The code is as follows:

<input type="checkbox" id="a"><label for="a"><img src="..."></label>

The effect we want to achieve is: click "Bank of China" and the checkbox will be selected (or cancelled). There is no problem in browsers such as FireFox and CHROME, but IE browser does not accept this.

The solution is to use JS:

Copy code
The code is as follows:

window.onload = function(){
if(document.all && navigator.appVersion.indexOf("MSIE")>-1 && navigator.appVersion.indexOf("Windows")>-1)
{
var a = document.getElementsByTagName("label");
for(var i=0,j=a.length;i<j;i++){
if(a[i].hasChildNodes && a[i].childNodes.item(0).tagName == "IMG")
{
a[i].childNodes.item(0).forid = a[i].htmlFor;
a[i].childNodes.item(0).onclick = function(){
var e = document.getElementById(this.forid);
switch(e.type){
case "radio": e.checked|=1;break;
case "checkbox": e.checked=!e.checked;break;
case "text": case "password": case "textarea": ​​e.focus(); break;
}
}
}
}
}
}

<<:  Web Design Principles of Hyperlinks

>>:  Detailed explanation of MySQL user rights management

Recommend

XHTML Basic 1.1, a mobile web markup language recommended by W3C

W3C recently released two standards, namely "...

Differences and comparisons of storage engines in MySQL

MyISAM storage engine MyISAM is based on the ISAM...

js+css to realize three-level navigation menu

This article example shares the specific code of ...

Detailed explanation of MySQL basic operations (Part 2)

Preface This article contains 1. Several major co...

A quick solution to the problem of PC and mobile adaptation

When making a web page, we usually need to consid...

MySQL cursor functions and usage

Table of contents definition The role of the curs...

Use of MySQL official export tool mysqlpump

Table of contents Introduction Instructions Actua...

Steps to package and deploy the Vue project to the Apache server

In the development environment, the vue project i...

Detailed explanation of zabbix executing scripts or instructions on remote hosts

Scenario Requirements 1. We can use the script fu...

The most comprehensive explanation of the locking mechanism in MySQL

Table of contents Preface Global Lock Full databa...

Pure CSS meteor shower background sample code

GitHub address, you can star it if you like it Pl...

How to keep running after exiting Docker container

Phenomenon: Run an image, for example, ubuntu14.0...

The connection between JavaScript constructors and prototypes

Table of contents 1. Constructors and prototypes ...