admin管理员组文章数量:1344954
How do I select all elements using same class name in javascript. I know i can do it using document.getElementsByClassName
but I read somewhere that it's not cross browser so if it is true what is the appropriate way to select elements depending on class name without jQuery or other library.
Thanks!
How do I select all elements using same class name in javascript. I know i can do it using document.getElementsByClassName
but I read somewhere that it's not cross browser so if it is true what is the appropriate way to select elements depending on class name without jQuery or other library.
Thanks!
Share Improve this question edited Apr 29, 2012 at 21:10 gdoron 150k59 gold badges302 silver badges371 bronze badges asked Apr 29, 2012 at 20:43 user1349047user1349047 2- 2 Believe me when I say you are not the first person to ask this question... google.co.uk/search?q=select+by+class+name+javascript – Matt Commented Apr 29, 2012 at 20:45
-
1
@Raj give querySelectorAll() a try, it's better and more flexible than
getElement...()
– Christoph Commented Apr 29, 2012 at 21:01
3 Answers
Reset to default 8I found this code:
if (!document.getElementsByClassName) {
document.getElementsByClassName = function(classname) {
var elArray = [];
var tmp = document.getElementsByTagName("*");
var regex = new RegExp("(^|\\s)" + classname + "(\\s|$)");
for (var i = 0; i < tmp.length; i++) {
if (regex.test(tmp[i].className)) {
elArray.push(tmp[i]);
}
}
return elArray;
};
}
Here
see here:
Support for getElementsByClassName
I remend using querySelector. It's more natural and pretty close to the jQuery Syntax, thus more mon to most ppl. Also it's pretty fast and you don't need to distinguish between classes, ids or whatever.
If you want to Support IE<7, you need a shim like gdoron provided.
It may be better to use document.querySelector or document.querySelectorAll, supported since IE8.
Have a look here:
https://developer.mozilla/docs/Web/API/document.querySelector https://developer.mozilla/docs/Web/API/document.querySelectorAll
本文标签: javascriptCross browser Selecting elements by class nameStack Overflow
版权声明:本文标题:javascript - Cross browser Selecting elements by class name - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743769660a2535888.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论