admin管理员组文章数量:1340694
I created buttons with different values in my HTML. I am trying to output these values when clicked on. I am making use of querySelectorAll
and eventListeners but it keeps outputing undefined.
let buttons = document.querySelectorAll('button');
function showNumber() {
if (buttons.value != 5) {
document.getElementById('screen').innerHTML = buttons.value;
} else {
document.getElementById('screen').innerHTML = 5;
}
}
buttons.forEach(buttons => {
buttons.addEventListener("click", () => {
showNumber()
});
});
I created buttons with different values in my HTML. I am trying to output these values when clicked on. I am making use of querySelectorAll
and eventListeners but it keeps outputing undefined.
let buttons = document.querySelectorAll('button');
function showNumber() {
if (buttons.value != 5) {
document.getElementById('screen').innerHTML = buttons.value;
} else {
document.getElementById('screen').innerHTML = 5;
}
}
buttons.forEach(buttons => {
buttons.addEventListener("click", () => {
showNumber()
});
});
Share
Improve this question
edited Jul 31, 2020 at 22:02
GirkovArpa
4,9425 gold badges18 silver badges51 bronze badges
asked Jul 31, 2020 at 21:53
osi_okorieosi_okorie
731 silver badge4 bronze badges
2
-
In general it is best practice to not name the inner variable of a forEach loop the same as the Array.
buttons.forEach(button=>{...
Also, it would be helpful if you have some html as part of your example. – Daniel Commented Jul 31, 2020 at 21:56 - Your showNumber function should receive an Event and you should use its target's properties to get the information you need. – tripathiakshit Commented Aug 1, 2020 at 0:22
3 Answers
Reset to default 6You can do it like this:
const
buttons = document.getElementsByTagName("button"),
screen = document.getElementById('screen');
Array.from(buttons).forEach(button =>
button.addEventListener("click", showNumber));
function showNumber(event) { // Listener can access its triggering event
const button = event.target; // event's `target` property is useful
if (button.value != 5) { screen.innerHTML = button.value; }
else { screen.innerHTML = 5; }
}
<button value="5">Button 1</button>
<button value="42">Button 2</button>
<p id="screen"></p>
But you might consider employing event delegation:
const
container = document.getElementById('container'),
screen = document.getElementById('screen');
container.addEventListener("click", showNumber); // events bubble up to ancestors
function showNumber(event) {
const clickedThing = event.target;
if(clickedThing.tagName == 'BUTTON'){ // makes sure this click interests us
screen.innerHTML = clickedThing.value;
}
}
<div id="container">
<button value="5">Button 1</button>
<button value="42">Button 2</button>
</div>
<p id="screen"></p>
in your foreach loop you need to pass back the button to your function
let buttons = document.querySelectorAll('button');
function showNumber(button) {
if (button.value != 6) {
document.getElementById('screen').innerHTML = button.value;
} else {
document.getElementById('screen').innerHTML = 5;
}
}
buttons.forEach(button => {
button.addEventListener("click", () => {
showNumber(button)
});
});
<button value=10>10</button>
<button value=8>8</button>
<button value=6>6</button>
<button value=4>4</button>
<button value=2>2</button>
<div id='screen'></div>
The issue is that buttons
is the whole array of buttons, not just the clicked button.
To access the button that was clicked, the simplest way is to use this
. Inside an event handler, this
points to the element that triggered the event (i.e. the button that was clicked), as long as we bind the function showNumber
directly to the event handler (and not calling showNumber()
from an anonymous function like in your initial code), i.e.:
button.addEventListener("click", showNumber);
So, binding showNumber
directly to the event handler and using this
, this is what we can do:
let buttons = document.querySelectorAll('button');
function showNumber() {
document.getElementById('screen').innerHTML = this.value;
}
buttons.forEach(button => {
button.addEventListener("click", showNumber);
});
<p id="screen"></p>
<button value="1">1</button>
<button value="10">10</button>
Edit: Removed unnecessary if statement inside the showNumber
function.
本文标签: javascriptHow to get the values of buttons with eventListenerStack Overflow
版权声明:本文标题:javascript - How to get the values of buttons with eventListener? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743610212a2509892.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论