运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The inert Attribute</h1> <div inert> <button onclick="alert(42)">Click me</button> <input type="text"> <a href="https://w3schools.com">W3Schools.com</a> </div> <p>The button, the link, and the input field above are disabled because of the inert attribute.</p> </body> </html>