How can I reduce the amount of children I use in my jQuery functions?

后端 未结 5 2021
一生所求
一生所求 2021-01-31 20:10

I feel like I have to use way too many .children() in some of my jQuery functions.

Here\'s my HTML:

5条回答
  •  抹茶落季
    2021-01-31 20:43

    .find('.goal-content .goal-row .goal-action').whatever()
    

    or more simply:

    .find('.goal-action').whatever()
    

提交回复
热议问题