在jquery对象的Init方法的最后面,有句这样的代码:return jQuery.makeArray( selector, this );
jQuery.makeArray定义如下:// results is for internal usage only return jQuery.makeArray( selector, this );
makeArray: function( array, results ) {
var ret = results || []; if ( array != null ) {
// The window, strings (and functions) also have 'length'
// The extra typeof function check is to prevent crashes
// in Safari 2 (See: #3039)
if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || (typeof array !== "function" && array.setInterval) ) {
push.call( ret, array );
} else {
jQuery.merge( ret, array );
}
} return ret;
},看了很久实在不明白这是用来干嘛的...
请指教!~谢谢!~~~