Вы можете сделать это:
var inputs = new Array();
inputs = $('#test :text').map(function(){
return this.value;
}).get(0);
Или:
var inputs = new Array();
inputs = $('#test :text').each(function(){
inputs.push(this.value);
});
Вы можете получить доступ к каждому значению следующим образом:
alert(inputs[0]);
alert(inputs[1]);
alert(inputs[2]);
// and so on
Ссылка :text
на входы типа text
.