jquery将具有相同名称的元素的值提取出来放到一个数组内
var arrInputValues = new Array(); $("input[name='xxx']").each(function(){ arrInputValues.push($(this).val()); });