,可以通过以下步骤实现:
下面是一个示例的前端代码,使用JavaScript实现上述功能:
<!DOCTYPE html>
<html>
<head>
<title>存储输入值到数组</title>
</head>
<body>
<input type="text" id="input1">
<input type="text" id="input2">
<input type="text" id="input3">
<button onclick="storeInputs()">提交</button>
<script>
function storeInputs() {
var inputs = []; // 创建一个空数组
// 获取文本框的值并添加到数组中
var input1 = document.getElementById("input1").value;
var input2 = document.getElementById("input2").value;
var input3 = document.getElementById("input3").value;
inputs.push(input1);
inputs.push(input2);
inputs.push(input3);
// 将数组转换为字符串
var inputsString = JSON.stringify(inputs);
// 存储到指定字段中(这里假设字段的ID为 "inputField")
document.getElementById("inputField").value = inputsString;
}
</script>
</body>
</html>
在上述示例中,我们创建了三个文本框和一个提交按钮。用户在文本框中输入内容后,点击提交按钮会触发storeInputs()
函数。该函数将文本框的值存储到一个数组中,并将数组转换为字符串后存储到指定的字段中。
请注意,上述示例仅为前端实现,后端存储的具体方式会根据实际情况而定。
云+社区技术沙龙[第17期]
云+社区沙龙online第6期[开源之道]
TC-Day
TC-Day
腾讯技术开放日
DBTalk
云+社区技术沙龙[第22期]
领取专属 10元无门槛券
手把手带您无忧上云