jQuery.fn = jQuery.prototype = { init:....}中                             // HANDLE: $("#id")  
var elem = document.getElementById( match[3] );

                  // Handle the case where IE and Opera return items
//by name instead of ID
if ( elem && elem.id != match[3] )
      return jQuery().find( selector );                  // Otherwise, we inject the element directly into the jQuery object
var ret = jQuery( elem || [] );
     }       通过 '#id'查找对象,   通过id获取elem 
    
       if(elem && elem.id!=match[3])  这是怎么回事, elem.id为元素id和match[3]是相等的,为什么这里
   要判断不相等,英文注释说是在IE和Opera的环境下处理       有jquery源码的交流群吗?