我跳过了键入时调用的jQuery源代码的不同区域:
$('.foo')
或者
$('#foo')
尝试确定 jQuery 如何解析选择器(我假设为 charAt() )但想验证。
我到了这里:
if ( selector.nodeType ) {
this.context = this[0] = selector;
this.length = 1;
return this;
}
但我有点卡在什么
selector.nodeType
做。该参考资料说 nodeType 几乎可以是任何东西......那么他们到底在检查什么?
jQuery API进一步打破了可能性。
总之,这个代码片段试图完成关于选择器变量的什么?