最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - each function index and element - Stack Overflow

programmeradmin1浏览0评论

my question is a simple one how do you use element with index in each function

$('div').each(function(index, element) {
     is element equal to $(this)
});

my question is a simple one how do you use element with index in each function

$('div').each(function(index, element) {
     is element equal to $(this)
});
Share Improve this question asked May 3, 2011 at 5:03 ONYXONYX 5,87116 gold badges88 silver badges148 bronze badges 5
  • 2 Your question might be simple if you added more details. Please add more details on what you're trying to do – JohnP Commented May 3, 2011 at 5:04
  • The answer might be as simple as $(this) – JohnP Commented May 3, 2011 at 5:04
  • 1 Ascii what you did there. But yeah - more info..? – Marty Commented May 3, 2011 at 5:05
  • how do u use element in the collection there is no documentation about it – ONYX Commented May 3, 2011 at 5:06
  • Try to give more information so that we are clear to answer your question. – Ariful Islam Commented May 3, 2011 at 5:11
Add a ment  | 

2 Answers 2

Reset to default 3

The element there will always be the same as this.

jsFiddle.

Except wrapping it in $() will make it a jQuery object, and won't be equal to the other one, even if you wrap the other with a jQuery object.

There should never be a reason why you need to pare this to element in that context.

$('div').each(function(index, element) {
     //element != $(this)
     //element == this
});

$(this) is this wrapped by a jquery object. So while this won't equal $(this), you can still manipulate it to your heart's content

Here's something to look at : http://jsfiddle/jomanlk/ZqXPn/

发布评论

评论列表(0)

  1. 暂无评论