运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <body> <h1>The HTMLCollection Object</h1> <h2>The length Property</h2> <p>Click "Change" to change all elements with class="myclass":</p> <button onclick="myFunction()">Change</button> <p>I am a paragraph.</p> <p class="myclass">I am a paragraph.</p> <p class="myclass">I am a paragraph.</p> <script> function myFunction() { const collection = document.getElementsByClassName("myclass"); for (let i = 0; i < collection.length; i++) { collection[i].style.fontSize = "24px"; } } </script> </body> </html>