Pergunta

I have inputs like this:

<input name="val[test]" value="...">

I am trying to get all values with a jQuery's serializeArray, but it wont work.

I am doing:

var test = $('#myForm').serializeArray();
debug(test.val[test]);

Its not working, why?

Foi útil?

Solução

var test = $('#myForm').serializeArray();
$.each(test, function(index, val) {
  console.log( val.test );
});

Note

serializeArray() give the output like:

[
 {
   test: 1
 },
 {
   test: 2
 },
 ...
]

Outras dicas

Use this instead:

console.log( test[ index ] );
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top