/*
*从r中过滤掉className不符合要求的元素
*r:一个result set,函数将从这个集合内过滤剩或者过滤掉由m选择器指定的元素
*m:它是一个style类名.
*not:是要过滤掉,还是过滤剩呢?由这个参数作为一个开关
*/
/*
* 把两个数组拼接起来(将第二个数组接到第一个数组的尾巴上)
*/
*从r中过滤掉className不符合要求的元素
*r:一个result set,函数将从这个集合内过滤剩或者过滤掉由m选择器指定的元素
*m:它是一个style类名.
*not:是要过滤掉,还是过滤剩呢?由这个参数作为一个开关
*/
classFilter: function(r,m,not){
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>m = " " + m + " ";//给m所指定的类名的左右两边各添加一个空格,是为了防止m所指定的类名被其他的类名包含的情况,如:'className'就会被'theclassName'包含,从而导致了等下使用indexOf函数判断的失败.
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>var tmp = [];
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>for ( var i = 0; r[i]; i++ ) {//逐个检查r中的每一个元素,看看它是否有m所指定的类名.
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>var pass = (" " + r[i].className + " ").indexOf( m ) >= 0;
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>if (<span style="color:#ff0000;">!not && pass || not && !pass</span>)//这个表达式太精练了,没有办法用语言描述,也很简单...
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>tmp.push( r[i] );
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>}
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>return tmp;//返回过滤后的结果.
<span style="color: rgb(0, 0, 0); white-space: pre;"> </span>}
/*
* 把两个数组拼接起来(将第二个数组接到第一个数组的尾巴上)
*/
merge: function(first, second) {
var i = 0, elem, pos = first.length;
if (jQuery.browser.msie) {
while (elem = second[ i++ ])
if(elem.nodeType != 8)//NodeType == 8 是comment节点
first[ pos++ ] = elem;
} else
<span style="color:#ff0000;">while (elem = second[i++])</span>
first[pos++] = elem;
return first;
}