Home > Web Front-end > JS Tutorial > body text

How to Get Elements by Class Name in Older Internet Explorer Versions (IE6, IE7, IE8)?

Patricia Arquette
Release: 2024-10-22 07:37:02
Original
394 people have browsed it

How to Get Elements by Class Name in Older Internet Explorer Versions (IE6, IE7, IE8)?

Getting Elements by Class Name in Old Internet Explorers (IE6, IE7, IE8)

Problem:

The getElementsByClassName() method returns an error in Internet Explorer 6, 7, and 8 due to a lack of support for this method.

Solution:

For browsers that do not support getElementsByClassName(), use the following alternative method:

<code class="javascript">document.getElementsByClassName = function(cl) {
  var retnode = [];
  var elem = this.getElementsByTagName('*');
  for (var i = 0; i < elem.length; i++) {
    if((' ' + elem[i].className + ' ').indexOf(' ' + cl + ' ') > -1) retnode.push(elem[i]);
  }
  return retnode;
};</code>
Copy after login

This script iterates through all elements on the page using getElementsByTagName('*') and checks if the class name of each element includes the specified class using indexOf(). If a class name match is found, the element is added to the retnode array. The resulting array contains all elements with the specified class name.

The above is the detailed content of How to Get Elements by Class Name in Older Internet Explorer Versions (IE6, IE7, IE8)?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!