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
     }


})
有帮助吗?

解决方案

You can count loop like this

.each(function (i) { }

here i will give you counter value

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top