Question

I've a simple each loop and I want count loops of this while,and find The final number then save counter variable and use in my codes, how can do posible...??!

var counter = 0;

$.each(data, function( key, value) {
  counter++;
     if(counter == /*The final number*/)
     {
        //Do Some Codes
     }


})
Était-ce utile?

La solution

You can count loop like this

.each(function (i) { }

here i will give you counter value

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top