<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<input type="button" value="拼接吧" id="btn"/><br/>
<input type="text" value=""/><br/>
<input type="text" value=""/><br/>
<input type="text" value=""/><br/>
<input type="text" value=""/><br/>
<input type="text" value=""/><br/>
<script src="../DOM/commer.js"></script>
<script>
//推荐使用:数组方式
document.getElementById("btn").onclick=function () {
var str=[];
//获取所有文本框
var inputs=document.getElementsByTagName("input");
//每个文本框的value属性
for(var i=0;i<inputs.length;i++){
if(inputs[i].type!="button"){
str.push(inputs[i].value);
}
}
console.log(str.join("|"));
}
</script>
</body>
</html>