admin管理员组文章数量:1242841
When accessing an array, when is it appropriate to use the .eq() function?
For example, I have...
slides.eq(slidesLength-1).css("z-index", (slidesLength-1));
and later I have...
for(i=0; i<slidesLength-1; i++) {
$(slides[i]).css("left", "-100%");
}
In the first piece of code, the slideshow stops functioning if I don's use the .eq() function. However, the second piece seems to function whether I use the .eq() function or not. Why is this?
When accessing an array, when is it appropriate to use the .eq() function?
For example, I have...
slides.eq(slidesLength-1).css("z-index", (slidesLength-1));
and later I have...
for(i=0; i<slidesLength-1; i++) {
$(slides[i]).css("left", "-100%");
}
In the first piece of code, the slideshow stops functioning if I don's use the .eq() function. However, the second piece seems to function whether I use the .eq() function or not. Why is this?
Share Improve this question asked Dec 22, 2015 at 15:58 Ivan PotoskyIvan Potosky 911 silver badge3 bronze badges3 Answers
Reset to default 7slides
is not an array. It's a jQuery object. The .eq()
method returns you the element at the specified index as a jQuery object.
While jQuery objects may not be arrays, they can pretend to be by having a length
property as well as properties corresponding to the indexes. (Since they are not arrays, you can't call methods like .pop()
, .forEach()
, etc. on them.)
When you do slides[i]
, you are actually getting the DOM element, not a jQuery object. The $()
function turns the DOM element into a jQuery object.
So, when you do slides.eq(1)
, internally jQuery is doing $(slides[i])
.
P.S. Objects, like jQuery objects, that pretend to be arrays are called "array-like objects". If you console.log(slides)
, it may look like an array. This is just your console trying to make things convenient for you. (See this question for more info: Creating array-like objects in JavaScript)
.eq()
is a jQuery method which returns a jQuery object, while accessing by index returns plain DOM element. You should use eq()
when you want to use jQuery methods (css()
in this case) on the returned selection.
The reason $(slides[i])
works is because you're constructing a jQuery object by passing the plain element to $()
constructor.
Your slides
variable is not an Array
, but a jQuery object.
.eq()
returns a jQuery object, eventually empty if index
is out of bounds, and a negative index
is counted from the end.
.get()
returns a DOM Element, or undefined
if index
is out of bounds, and a negative index
is counted from the end.
[]
returns a DOM Element, or throw an Error if index
is out of bounds.
...
Additionally, jQuery methods let you interact with a set of elements as it was alone. So you if you do:
slides.css("left", "-100%");
It is applied on every matched elements contained in the jQuery object. It is unnecessary to loop over them.
...
Also the preferred way to loop over matched elements is using the each()
method:
slides.each(function (i, el) {
var $el = $(el);
});
...
Also it is an established convention to prefix jQuery variables with a $
sign; it let you to easily differentiate DOM elements from jQuery objects. But that's only a matter of taste.
本文标签: arrayeq() vs array in Javascript and JqueryStack Overflow
版权声明:本文标题:array.eq() vs. array[] in Javascript and Jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740131603a2229850.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论