Find nested element in query

后端 未结 5 1736
生来不讨喜
生来不讨喜 2021-01-15 09:19

I need to find an DropDownList with class addressControlCountry. How?

5条回答
  •  花落未央
    2021-01-15 09:43

    You can use

    $('#divLegalAddress).children()

    If divLegalAddress has more than one children you may use .eq()-function to pick the right one.

提交回复
热议问题