var input = doucment.getElementsByTagName('input'); 返回的是多个input元素的集合。for(var i =0;i < input.length;i++){ input[i].value}遍历该集合,就可以分别取得input的值。