Get the values of all inputs with same class as an array

前端 未结 5 1974
耶瑟儿~
耶瑟儿~ 2021-02-07 00:17

I have a group of inputs and I want to get the value of each one in array form or in any way that you will suggest. I am not very good at arrays.

$(elemnt).each(         


        
5条回答
  •  半阙折子戏
    2021-02-07 00:40

    var values = [];
    $('.spocNames').each(function(){
        values.push({ name: this.name, value: this.value }); 
    });
    //use values after the loop
    console.log(values);
    

提交回复
热议问题