数组和jquery之间的区别是什么?包裹清单?
我注意到在firebug中,第二个变量t有一个下拉列表。
var t = $('li').toArray();
alert(t);
t = $('li');
alert(t);
})
答案 0 :(得分:1)
jQuery对象具有额外的属性,即...... jQuery对象属性。原型($.fn
快捷方式,同样的事情),给你all those chainable functions。
要明确的是,jQuery对象不是数组,它们的行为就像数组一样(.length
property,.slice()
method等)。有关这些额外属性的列表(以及模拟它们的数组),源代码中为look here。