我是JavaScript Selector的新手,我希望知道为什么下面的“for循环”在控制台中不起作用?
for(var i=0;i<=24;i++)
{document.getElementsByClassName("srr-title")[i].innerHTML}
谢谢!
答案 0 :(得分:1)
您错过了console.log()
for(var i=0;i<=24;i++)
{
console.log(document.getElementsByClassName("srr-title")[i].innerHTML);
// above code will print the value on console
}