多次从输入中获取值,无需刷新页面

发布于 2025-01-17 03:43:15 字数 124 浏览 0 评论 0原文

我有一个输入和一个按钮。当我单击按钮时,我想从输入中获取值并将其放入变量中。如何在不刷新页面的情况下多次执行此操作? 例子: 输入:约翰 按钮:点击 让 x = 约翰 --> 不刷新页面 输入:鲍勃 按钮:点击 让 x = 鲍勃

I have an input and a button. When I clicked the button I want to take the value from input and put it into a variable. How can do this action several times without refreshing the page ?
Example:
Input: John
Button: click
let x = John
-->without refreshing the page
Input: Bob
Button: click
let x = Bob

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫﹏色ふ单纯 2025-01-24 03:43:15

您需要一个变量来存储输入的值以及单击按钮时调用的函数。此示例中的 name 保存输入的值,并在每次单击按钮时更新。

let name;
document.querySelector("#btn").addEventListener("click", () => {
  name = document.querySelector("#name").value;
  console.log(name);
});
<input id="name" />
<button id="btn">Click me</button>

You need a variable to store the value of the input and a function that is being called when the button is clicked. name in this example holds the value of the input and is updated everytime the button is clicked.

let name;
document.querySelector("#btn").addEventListener("click", () => {
  name = document.querySelector("#name").value;
  console.log(name);
});
<input id="name" />
<button id="btn">Click me</button>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文