


Solution to the problem that IE browser does not support getElementsByClassName_javascript skills
The getElementsByClassName method has been added to DOM3, but it is not supported by other versions except IE9 and 10. This is a pain!
The current solution is to determine whether the browser supports this method. If it supports it, leave it alone. If it does not support it, add the getElementsByClassName method to the document object. This way of writing has the advantage that you don’t have to go there regardless of whether there is a native function or not. Modify the code.
Some people on the Internet directly define a getElementsByClassName function, but in this case, all uses of document.getElementsByClassName in the code need to be rewritten into getElementsByClassName. It's somewhat inconvenient and not universal.
The following method perfectly supports document writing:
if(!document.getElementsByClassName){ document.getElementsByClassName = function(className, element){ var children = (element || document).getElementsByTagName('*'); var elements = new Array(); for (var i=0; i<children.length; i++){ var child = children[i]; var classNames = child.className.split(' '); for (var j=0; j<classNames.length; j++){ if (classNames[j] == className){ elements.push(child); break; } } } return elements; }; }

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Fastapi ...

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

The reason and solution to the valueError:toomyvalueestounpack(expected2) error when using pyecharts' Map...

Loading pickle file in Python 3.6 environment error: ModuleNotFoundError:Nomodulenamed...

Use Python's subprocess module to execute wmic...

Error loading Pickle file in Python 3.6 environment: ModuleNotFoundError:Nomodulenamed...

Efficient reading of Windows system logs: Reversely traverse Evtx files When using Python to process Windows system log files (.evtx), direct reading will be from the earliest...

Frequently Asked Questions about Wireless Debugging with Adb When using Mac for Android development, you often encounter the inability to use Adb...
