• 通过正则写一个较为完美的getByClass函数


     getByclass传入两个参数,oParent是父集,sClass是要传入class名称

     1 function getByClass(oParent,sClass){
     2     var aChild = oParent.getElementsByTagName("*"),
     3         result = [];
     4     for(var i =0;i<aChild.length;i++){
     5         if(aChild[i].className.match(new RegExp("(\s|^)" + sClass+ "(\s|$)"))){ //判断是否有该class
     6             result.push(aChild[i]);
     7         };
     8     };
     9     return result;
    10 };
  • 相关阅读:
    第九章
    第十章
    第八章
    第七章
    第六章
    第五章
    第四章
    第三章
    第二章
    第一章
  • 原文地址:https://www.cnblogs.com/fyima/p/3698239.html
Copyright © 2020-2023  润新知