How to loop through all elements of a form jQuery

前端 未结 9 2074
Happy的楠姐
Happy的楠姐 2020-12-14 00:11

I was just wondering what the best way of looping through all the child elements of a form would be? My form contains both input and select elements.

At the moment I

9条回答
  •  抹茶落季
    2020-12-14 00:37

    What happens, if you do this way:-

    $('#new_user_form input, #new_user_form select').each(function(key, value) {
    

    Refer LIVE DEMO

提交回复
热议问题