运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body onclick="myFunction()"> <h1>The Document Object</h1> <h2>The activeElement Property</h2> <input type="text" value="An input field"> <button>A Button</button> <p>Click anywhere in the document to display the active element:</p> <p id="demo"></p> <script> function myFunction() { const element = document.activeElement.tagName; document.getElementById("demo").innerHTML = element; } </script> </body> </html>