运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> div { border: 1px solid black; padding: 16px; } </style> <body> <h1>The Element Object</h1> <h2>The getElementsByTagName() Method</h2> <p>Click "Change" to change the second p element in "myDIV".</p> <p><button onclick="myFunction()">Change</button></p> <div id="myDIV"> <p>I am a paragraph.</p> <p>I am a paragraph.</p> <p>I am a paragraph.</p> </div> <script> function myFunction() { const element = document.getElementById("myDIV"); element.getElementsByTagName("p")[1].style.fontSize = "24px"; } </script> </body> </html>