Jquery .each through Divs inside another Div

后端 未结 4 692
一个人的身影
一个人的身影 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:50

    The syntax would be $(".left > div").each(function(){}); instead of .each(".left > div").

    Update: Would want to use $(".left").children().each()

提交回复
热议问题