我创建了一个 DOM 事件,但它没有给我想要的结果
我创建了一个函数来更改元素的颜色值。我对具有不同事件的两个元素使用了相同的函数,但我的第二个元素不仅仅更改了第一个元素。
function colorChange(event){
let randomColor = 'rgb(' + colorValue() + ',' + colorValue() + ',' + colorValue() + ')';
button.style.backgroundColor = randomColor
}
button.addEventListener('click', colorChange);
mysteryButton.onwheel = colorChange;
I created a function to change the color value of my elements. I used the same function on both elements with different events but my second element isn't changing only the first element.
function colorChange(event){
let randomColor = 'rgb(' + colorValue() + ',' + colorValue() + ',' + colorValue() + ')';
button.style.backgroundColor = randomColor
}
button.addEventListener('click', colorChange);
mysteryButton.onwheel = colorChange;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你应该尝试一下
Maybe you should try instead