Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the compatibility problem of native js method document.getElementsByClassName in ie8 and below

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail how to solve the compatibility problem of native js method document.getElementsByClassName in ie8 and below. The content of the article is of high quality, so the editor shares it for you as a reference. I hope you will have some understanding of the relevant knowledge after reading this article.

The native js method "document.getElementsByClassName" cannot be used in ie8 and below browsers.

Modification: add compatibility judgment and change it to getClassNames method where you need to use this method.

The code is as follows:

Original method: document.getElementsByClassName ('tabs_div')

The calling method here is: getClassNames ('tabs_div',' div')

The code is as follows:

Var divs = getClassNames ('tabs_div',' div')

Function getClassNames (classStr,tagName) {

If (document.getElementsByClassName) {

Return document.getElementsByClassName (classStr)

} else {

Var nodes = document.getElementsByTagName (tagName), ret = []

For (I = 0; I < nodes.length; iTunes +) {

If (hasClass (Nodes [I], classStr)) {

Ret.push (Nodes [I])

}

}

Return ret

}

}

Function hasClass (tagStr,classStr) {

Var arr=tagStr.className.split (/\ swords /); / / this regular expression is because there can be multiple class to determine whether it contains

For (var iTuno Bandi)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report