多次从输入中获取值,无需刷新页面
我有一个输入和一个按钮。当我单击按钮时,我想从输入中获取值并将其放入变量中。如何在不刷新页面的情况下多次执行此操作? 例子: 输入:约翰 按钮:点击 让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个变量来存储输入的值以及单击按钮时调用的函数。此示例中的
name
保存输入的值,并在每次单击按钮时更新。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.