Ò»¸öÅóÓÑÔÚij¹«Ë¾ÎªÄ³¹úÆó½ÌÓý»ú¹¹×öÍøÂç¿Î³Ì¡£ËýµÄÈÎÎñÊÇ×öһЩǰ¶ËÒ³ÃæµÄ¹¤×÷£¬µ«×öÍøÂç¿Î³ÌµÄÒªÇóÊÇtable²¼¾Ö£¬Çҵÿ¼ÂÇie6¡¢7¡¢8£¬²»ÔÊÐíÓÃjqueryµÈ¿ò¼Ü¡£ÒªÖªµÀieÊDz»Ö§³ÖclassNameÈ¡±êÇ©µÄ°¡£¬Èç¹ûҪͨ¹ýclassName»ñÈ¡±êÇ©Ôõô°ì°¡¡£Äã¿ÉÒÔͨ¹ýÕâ¸ö·½·¨
Ò»¸öÅóÓÑÔÚij¹«Ë¾ÎªÄ³¹úÆó½ÌÓý»ú¹¹×öÍøÂç¿Î³Ì¡£ËýµÄÈÎÎñÊÇ×öһЩǰ¶ËÒ³ÃæµÄ¹¤×÷£¬µ«×öÍøÂç¿Î³ÌµÄÒªÇóÊÇtable²¼¾Ö£¬Çҵÿ¼ÂÇie6¡¢7¡¢8£¬²»ÔÊÐíÓà jqueryµÈ¿ò¼Ü¡£ÒªÖªµÀieÊDz»Ö§³ÖclassNameÈ¡±êÇ©µÄ°¡£¬Èç¹ûҪͨ¹ýclassName»ñÈ¡±êÇ©Ôõô°ì°¡¡£Äã¿ÉÒÔͨ¹ýÕâ¸ö·½·¨£º
- function getElementsByClassName(className,root,tagName) { //root£º¸¸½Úµã£¬tagName£º¸Ã½ÚµãµÄ±êÇ©Ãû¡£ ÕâÁ½¸ö²ÎÊý¾ù¿ÉÓпÉÎÞ
- if(root){
- root=typeof root=="string" ? document.getElementById(root) : root;
- }else{
- root=document.body;
- }
- tagNametagName=tagName||"*";
- if (document.getElementsByClassName) { //Èç¹ûä¯ÀÀÆ÷Ö§³ÖgetElementsByClassName£¬¾ÍÖ±½ÓµÄÓÃ
- return root.getElementsByClassName(className);
- }else {
- var tag= root.getElementsByTagName(tagName); //»ñÈ¡Ö¸¶¨ÔªËØ
- var tagAll = []; //ÓÃÓÚ´æ´¢·ûºÏÌõ¼þµÄÔªËØ
- for (var i = 0; i < tag.length; i++) { //±éÀú»ñµÃµÄÔªËØ
- for(var j=0,n=tag[i].className.split(' ');j<n.length;j++){ //±éÀú´ËÔªËØÖÐËùÓÐclassµÄÖµ£¬Èç¹û°üº¬Ö¸¶¨µÄÀàÃû£¬¾Í¸³Öµ¸øtagnameAll
- if(n[j]==className){
- tagAll.push(tag[i]);
- break;
- }
- }
- }
- return tagAll;
- }
- }