运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <style> .container, .demo { background-color: tomato; color: white; padding: 20px; margin: 10px; } </style> <body> <h1>The Element Object</h1> <h2>The closest() Method</h2> <div class="demo"> Grandparent <div class="demo container">Parent <div id="myElement" class="demo">The parent of this div element will be selected.</div> </div> </div> <script> const element = document.getElementById("myElement"); const closest = element.closest(".container"); if (closest) { closest.style.border = "4px solid black"; } </script> </body> </html>