gpt4 book ai didi

javascript - 如何将用户输入存储到数组中?

转载 作者:行者123 更新时间:2023-11-30 11:05:10 24 4
gpt4 key购买 nike

如何存储来自 <input type="text"> 的用户输入?到 Javascript 中的数组?到目前为止我有这个:

<input type="text" id="user_input">
<button type="button>click</button>

<script>
const myArray = [];
//what next? I don't mind using console.log to test
</script>

最佳答案

首先,您可以使用 onclick <button> 中的属性, 可以在点击按钮时执行一个函数。

<button type="button" onclick="addData()">click</button>

在您的 JavaScript 中,您将定义 addData() 函数。

const inputData = [];

const addData = () => {
const inputText = document.getElementById('user_input');
inputData.push(inputText.value);
}

这是给你的演示:

<input type="text" id="user_input">
<button type="button" onclick="addData()">click</button>

<script>
const inputData = [];

const addData = () => {
const inputText = document.getElementById('user_input');
inputData.push(inputText.value);
console.log(inputData);
}
</script>

关于javascript - 如何将用户输入存储到数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55962240/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com