码迷,mamicode.com
首页 > Web开发 > 详细

js通过class获取元素

时间:2014-11-24 14:59:00      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   for   on   

bubuko.com,布布扣

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta charset="utf-8">
<title>通过class获取元素</title>
<style>
#box div { width:100px; height:100px; border:1px solid red; margin:10px; }
#box .bar { background:#ccc; }
</style>
<script>
window.onload=function (){
    var oDiv=document.getElementById(box);
    
    var arr=getByClass(oDiv, bar);
    
    alert(arr.length);
};

function getByClass(oParent, sClassName)
{
    var res=[];
    var aTmp=oParent.getElementsByTagName(*);
    
    for (var i=0; i<aTmp.length; i++)
    {
        if (aTmp[i].className.indexOf(sClassName) != -1)
       { res.push(aTmp[i]); } }
return res; } </script> </head> <body> <div id="box"> <div class="bar item"></div> <div class="bar"></div> <div class="bar"></div> <div></div> <div></div> <p class="bar"></p> </div> </body> </html>

 

js通过class获取元素

标签:style   blog   http   io   ar   color   sp   for   on   

原文地址:http://www.cnblogs.com/heboliufengjie/p/4118622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!