运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The getElementsByClassName() Method</h2> <p>Change the text of the first element with class="example":</p> <div class="example">Element1</div> <div class="example">Element2</div> <script> const collection = document.getElementsByClassName("example"); collection[0].innerHTML = "Hello World!"; </script> </body> </html>