Jquery .each through Divs inside another Div

后端 未结 4 686
一个人的身影
一个人的身影 2021-01-11 14:00

I currently have the following html:

Apologies for edit, I was not paying attention when i wrote this.

 
1&
4条回答
  •  無奈伤痛
    2021-01-11 14:48

    Is this what you're lookng for?

    $('div.left>div').each(function(){ /* do stuff */ });
    

    Fiddle: http://jsfiddle.net/MLnBY/

提交回复
热议问题