Loop through all elements with class 'blah' and find the highest id value

前端 未结 4 2141
闹比i
闹比i 2021-02-13 20:25

I have a bunch of elements like:

..

I want to loop through all of them and get the highest

4条回答
  •  忘了有多久
    2021-02-13 21:05

    I think you need the second value the splitted ID, and you might want to convert the string to an integer, like this:

    var newid = 0;
    
    $(".blah").each(function() {
    
      var id = parseInt( this.id.split('-')[1], 10 );
    
      if( id > newid)
        newid = id;
    
    });
    

提交回复
热议问题