How to loop through all elements of a form jQuery

前端 未结 9 2073
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 01:00

    As taken from the #jquery Freenode IRC channel:

    $.each($(form).serializeArray(), function(_, field) { /* use field.name, field.value */ });
    

    Thanks to @Cork on the channel.

提交回复
热议问题