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?

有帮助吗?

解决方案

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

Note

serializeArray() give the output like:

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

其他提示

Use this instead:

console.log( test[ index ] );
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top