我能够获取具有特定类名的元素,但无法检索具有该特定类名的元素数量的长度。
我应该如何获取具有子元素特定类名的元素数量?
document.getElementById('contact').onsubmit = function() {
var children = this.children;
for(var i = 0; i < children.length; i++) {
if (children[i].className == 'req') {
console.log(children[i]); //defined
console.log(children[i].length); //undefined
}
}
return false;
};