作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在编写大量使用 ES6 的 JavaScript 教程。到目前为止,两个类都抛出了相同的错误,而且作为 JavaScript 新手,我仍在尝试理解逻辑,因此不太擅长调试。我尝试使用 Babel 将 ES6 代码转换为纯 JavaScript,认为这是浏览器问题,但出现了同样的错误。
任何帮助将不胜感激。
ES6 JavaScript
const inputs = document.querySelectorAll('.controls input');
function handleUpdate() {
const suffix = this.dataset.sizing || '';
document.documentElement.style.setProperty(`--${this.name}`, this.value + suffix);
}
inputs.forEach(input => input.addEventListener('change', handleUpdate));
inputs.forEach(input => input.addEventListener('mousemove', handleUpdate));
“Babel”编译的 JavaScript
var inputs = document.querySelectorAll('.controls input');
function handleUpdate() {
var suffix = this.dataset.sizing || '';
document.documentElement.style.setProperty('--' + this.name, this.value + suffix);
}
inputs.forEach(function (input) {
return input.addEventListener('change', handleUpdate);
});
inputs.forEach(function (input) {
return input.addEventListener('mousemove', handleUpdate);
});
错误
inputs.forEach is not a function
最佳答案
使用Array.from()
转换Document.querySelectorAll()
返回的NodeList
到数组
。然后,您可以在 javascript
的其余部分使用链接到 input
的 .forEach()
。
const inputs = Array.from(document.querySelectorAll('.controls input'));
关于JavaScript ES6 "not a function"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41126365/
我是一名优秀的程序员,十分优秀!