运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> .container { background-color: tomato; color: white; padding: 20px; } </style> <body> <h1>The Element Object</h1> <h2>The matches() Method</h2> <p id="demo" class="container"></p> <script> const element = document.getElementById("demo"); let text; if (element.matches(".container")) { text = "This element matches the CSS selector"; } else { text = "This element does not match the CSS selector"; } document.getElementById("demo").innerHTML = text; </script> </body> </html>